mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
![]() |
export interface IAddOfferRequestData
|
||
|
{
|
||
|
Action: string
|
||
|
sellInOnePiece: boolean
|
||
|
items: string[]
|
||
|
requirements: Requirement[]
|
||
|
}
|
||
|
|
||
|
export interface Requirement
|
||
|
{
|
||
|
_tpl: string
|
||
|
count: number
|
||
|
level: number
|
||
|
side: number
|
||
|
onlyFunctional: boolean
|
||
|
}
|