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