UNPKG

fleeta-components

Version:

A comprehensive React component library for fleet management applications

17 lines 554 B
/** * MapComponent exports */ export { MapComponent } from './MapComponent'; export { VehicleMarker } from './VehicleMarker'; export interface MapComponentProps { height?: string; gpsPoints?: import('../utils/gpsParser').GpsPoint[]; currentTime?: number; sensorData?: import('../utils/sensorParser').IAccel[]; showEventComponent?: boolean; videoDuration?: number; className?: string; speedUnit?: 'km/h' | 'mph'; mapStyle?: keyof typeof import('../hooks/useMapStyle').MAP_STYLES; } //# sourceMappingURL=index.d.ts.map