| 36 | export type ClientWsMessage = DriverResponseToTripResponse |
| 37 | |
| 38 | interface TripCreatedRequest { |
| 39 | type: TripEvents.Created; |
| 40 | data: Trip; |
| 41 | } |
| 42 | |
| 43 | interface NoDriversFoundRequest { |
| 44 | type: TripEvents.NoDriversFound; |
nothing calls this directly
no outgoing calls
no test coverage detected