| 1 | type UUID = `${string}-${string}-${string}-${string}-${string}`; |
| 2 | |
| 3 | export interface FleetUnit { |
| 4 | id: string; |
| 5 | uuid: UUID; |
| 6 | lat: number; |
| 7 | lng: number; |
| 8 | status: 'EN ROUTE' | 'DOCKING' | 'CRITICAL' | 'TRANSIT' | 'CHARGING' | 'MAINTENANCE' | 'WARNING'; |
| 9 | speed: string; |
| 10 | battery: string; |
| 11 | needsService: boolean; |
| 12 | } |
| 13 | |
| 14 | export interface ServiceTicket { |
| 15 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected