(id: string, update: Partial<FleetUnit>)
| 26 | } |
| 27 | |
| 28 | export function updateFleetUnit(id: string, update: Partial<FleetUnit>): FleetUnit | undefined { |
| 29 | return fleetDb.updateUnit(id, update); |
| 30 | } |
| 31 | |
| 32 | export function getServiceQueue(): ServiceTicket[] { |
| 33 | return fleetDb.getServiceQueue(); |