import { IGpsCurrentLocation } from '../../../interfaces'; import { IGpsHeadingInfo } from './gps-heading-info.interface'; import { IGpsProgress } from './gps-progress.interface'; export interface IProgressBarData { currentLocation: IGpsCurrentLocation | null; currentPosition: number; currentStop: IGpsProgress; mileageInfo: string; mileagesPercent: string; totalMiles: number; gpsTitle: string; gpsIcon: string; gpsInfo: IGpsHeadingInfo; gpsLocationIcon: string; gpsProgress: IGpsProgress[]; dispatchStatus: string; driverId: number; }