mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
16 lines
345 B
TypeScript
16 lines
345 B
TypeScript
![]() |
export interface IHideoutImproveAreaRequestData
|
||
|
{
|
||
|
Action: "HideoutImproveArea"
|
||
|
/** Hideout area id from areas.json */
|
||
|
id: string
|
||
|
areaType: number
|
||
|
items: HideoutItem[]
|
||
|
timestamp: number
|
||
|
}
|
||
|
|
||
|
export interface HideoutItem
|
||
|
{
|
||
|
/** Hideout inventory id that was used by improvement action */
|
||
|
id: string
|
||
|
count: number
|
||
|
}
|