import { ILocation } from './ILocation'; import { INaviList } from './INaviList'; export interface INavigationResponse { wayPoints?: ILocation[]; originFloorId?: string; destFloorId?: string; navigationList?: INaviList[]; locations: ILocation[]; pathInfo: ILocation[]; totalDistance: number; totalTime: number; floorIdList: string[]; originNodeId: string; destNodeId: string; usedTransList?: string[]; } export interface INavigationResponseData { [key: string]: INavigationResponse; }