Interface DatabaseStation

interface DatabaseStation {
    city_id: number;
    color: string;
    id: number;
    name: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

city_id: number

City ID

color: string

Hex color code without #

id: number

Station ID

name: string

Station name

Generated using TypeDoc