LasTres/js-src/location.ts

18 lines
317 B
TypeScript

export interface NameIdentifierHash {
name: string
identifier: string
}
export interface Area {
name: string
identifier: string
can_explore: boolean
}
export interface Location {
location: NameIdentifierHash
area: Area
super_area: NameIdentifierHash
planet: NameIdentifierHash
}