@golemio/pid
Version:
Golemio PID Module
24 lines (23 loc) • 516 B
TypeScript
export interface IV4TransferDepartureOutputDto {
departure_timestamp: {
minutes: string[];
};
route: {
short_name: string | null;
type: number | null;
};
stop: {
platform_code: string | null;
};
trip: {
headsign: string;
id: string;
is_wheelchair_accessible: boolean | null;
is_guaranteed_transfer: boolean;
};
icons: string[];
substitution_text: {
cs: string;
en: string | null;
} | null;
}