mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
24 lines
402 B
TypeScript
24 lines
402 B
TypeScript
![]() |
import { MinMax } from "../../common/MinMax"
|
||
|
|
||
|
export interface IHideoutScavCase
|
||
|
{
|
||
|
_id: string
|
||
|
ProductionTime: number
|
||
|
Requirements: Requirement[]
|
||
|
EndProducts: EndProducts
|
||
|
}
|
||
|
export interface Requirement
|
||
|
{
|
||
|
templateId: string
|
||
|
count: number
|
||
|
isFunctional: boolean
|
||
|
type: string
|
||
|
}
|
||
|
|
||
|
export interface EndProducts
|
||
|
{
|
||
|
Common: MinMax
|
||
|
Rare: MinMax
|
||
|
Superrare: MinMax
|
||
|
}
|