import { ILocation } from './ILocation'; export interface INetworkNavigationResponse { locations: ILocation[]; simplifiedLocationList: ILocation[]; pathInfo: ILocation[]; totalDistance: number; totalTime: number; origin: ILocation; wayPoints: ILocation[]; finalDestination: ILocation; }