24 lines
364 B
TypeScript
24 lines
364 B
TypeScript
interface Route {
|
|
id: string;
|
|
gtfsId: string;
|
|
shortName: string;
|
|
longName: string;
|
|
color: string;
|
|
textColor: string;
|
|
mode: string;
|
|
type: string;
|
|
timeSheet: boolean;
|
|
pdfTimeSheet: boolean;
|
|
pdfMap: boolean;
|
|
}
|
|
|
|
interface Cluster {
|
|
city: string;
|
|
code: string;
|
|
id: string;
|
|
lat: number;
|
|
lon: number;
|
|
name: string;
|
|
visible: boolean;
|
|
}
|