chfore: split map into components
This commit is contained in:
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
interface Route {
|
||||
id: string;
|
||||
gtfsId: string;
|
||||
shortName: string;
|
||||
longName: string;
|
||||
color: string;
|
||||
textColor: string;
|
||||
mode: string;
|
||||
type: string;
|
||||
timeSheet: string;
|
||||
pdfTimeSheet: boolean;
|
||||
pdfMap: boolean;
|
||||
}
|
||||
|
||||
interface Cluster {
|
||||
city: string;
|
||||
code: string;
|
||||
id: string;
|
||||
lat: number;
|
||||
lon: number;
|
||||
name: string;
|
||||
visible: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user