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