import { DIRECTION_EN_TYPE } from './DirectionType'; import { IVector3 } from '../common/IVector3'; export interface ILocation { position: IVector3; floorId: string; nodeId: string; poiId: string | null; destination: boolean; idx: number; transCode: string | null; distance: number; direction: DIRECTION_EN_TYPE | null; angle: number; isEntrance?: boolean; }