@golemio/pid
Version:
Golemio PID Module
16 lines (15 loc) • 324 B
TypeScript
export interface IRouteDto {
type: number;
name: string;
}
export interface IStopRouteDto {
stop_id: string;
routes: IRouteDto[];
}
export interface IDeparturesPresetOutputDto {
route_name: string;
note: string;
is_testing: boolean;
stops: string[] | [];
stops_routes: IStopRouteDto[];
}