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
|
|
} |