| 37 | } |
| 38 | |
| 39 | export class TravelObject implements Travel { |
| 40 | id!: string; |
| 41 | startDate!: Timestamp; |
| 42 | endDate!: Timestamp; |
| 43 | isPublic: boolean = false; |
| 44 | userId!: String |
| 45 | title: string = ''; |
| 46 | } |
| 47 | |
| 48 | export class StopObject implements Stop { |
| 49 | id!: string; |
nothing calls this directly
no outgoing calls
no test coverage detected