| 76 | } |
| 77 | |
| 78 | interface DriverResponseToTripResponse { |
| 79 | type: TripEvents.DriverTripAccept | TripEvents.DriverTripDecline; |
| 80 | data: { |
| 81 | tripID: string; |
| 82 | riderID: string; |
| 83 | driver: Driver; |
| 84 | }; |
| 85 | } |
| 86 | |
| 87 | export interface HTTPTripPreviewResponse { |
| 88 | route: Route; |
nothing calls this directly
no outgoing calls
no test coverage detected