Files
better-mreso/app/types.d.ts
T

24 lines
363 B
TypeScript

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;
}