UNPKG

@golemio/pid

Version:
16 lines (15 loc) 355 B
import { IDepartureTime } from "./IDepartureTime"; export interface ITransferOutputDto { departure_timestamp: Pick<IDepartureTime, "minutes">; route: { short_name: string | null; type: number | null; }; stop: { platform_code: string | null; }; trip: { headsign: string; id: string; }; }