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

8 lines
187 B
TypeScript

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