mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
export interface IHideoutPutItemInRequestData
|
|
{
|
|
Action: "HideoutPutItemsInAreaSlots"
|
|
areaType: number
|
|
items: Record<string, ItemDetails>
|
|
timestamp: number
|
|
}
|
|
|
|
export interface ItemDetails
|
|
{
|
|
count: number
|
|
id: string
|
|
} |