czydojade/resources/ts/model/line.ts
2018-09-08 12:59:59 +02:00

9 lines
192 B
TypeScript

export type LineType = "tram" | "bus" | "trolleybus" | "train" | "other";
export interface Line {
id: any;
symbol: string;
type: LineType;
night: boolean;
fast: boolean;
}