MCPcopy Index your code
hub / github.com/angular/examples / FleetUnit

Interface FleetUnit

logistics-manager-app/src/fleet-db.ts:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1type UUID = `${string}-${string}-${string}-${string}-${string}`;
2
3export 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
14export interface ServiceTicket {
15 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected