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;
    };
}
