@golemio/pid
Version:
Golemio PID Module
20 lines (19 loc) • 513 B
TypeScript
export interface IStopTimesDto {
trip_id: string;
stop_sequence: number;
arrival_time: string;
arrival_time_seconds: number;
departure_time: string;
departure_time_seconds: number;
drop_off_type: string;
pickup_type: string;
shape_dist_traveled: number;
stop_headsign: string;
stop_id: string;
timepoint: number;
headsign_icons: string | null;
stop_icons: string | null;
}
export interface IStopTimesComputedDto {
computed_dwell_time_seconds: number;
}