mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
29 lines
364 B
TypeScript
29 lines
364 B
TypeScript
![]() |
export interface IItemEventRouterRequest
|
||
|
{
|
||
|
data: Daum[]
|
||
|
tm: number
|
||
|
reload: number
|
||
|
}
|
||
|
|
||
|
export interface Daum
|
||
|
{
|
||
|
Action: string
|
||
|
item: string
|
||
|
to: To
|
||
|
}
|
||
|
|
||
|
export interface To
|
||
|
{
|
||
|
id: string
|
||
|
container: string
|
||
|
location?: Location
|
||
|
}
|
||
|
|
||
|
export interface Location
|
||
|
{
|
||
|
x: number
|
||
|
y: number
|
||
|
r: string
|
||
|
isSearched: boolean
|
||
|
}
|
||
|
|