czydojade/resources/ts/model/departure.ts
2018-09-02 19:23:38 +02:00

14 lines
284 B
TypeScript

import { Stop } from "./stop";
import { Line } from "./line";
import { Moment } from "moment";
export interface Departure {
display: string;
estimated: Moment;
scheduled: Moment;
stop: Stop;
line: Line;
delay: number;
vehicle?: string;
}