@golemio/pid
Version:
Golemio PID Module
16 lines (15 loc) • 355 B
TypeScript
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;
};
}