UNPKG

@golemio/pid

Version:
18 lines (17 loc) 571 B
import { GTFSRouteTypeEnum } from "../../../helpers/RouteTypeEnums"; export interface ITransferDeparture { departure_datetime_real: Date | null; stop_headsign: string | null; departure_datetime: Date | null; stop_id: string; platform_code: string | null; trip_id: string; trip_headsign: string; trip_short_name: string | null; route_short_name: string | null; route_type: GTFSRouteTypeEnum; route_id: string | null; is_canceled: boolean; "trip.cis_stop_platform_code": string | null; is_delay_available: boolean; }