Interface Region

A region is a group of stations, for example a metropolitan area or a geographical or cultural region.

interface Region {
    id: string;
    name: string;
    stations: readonly string[];
    type: "region";
}

Properties

Properties

id: string
name: string
stations: readonly string[]

station ids

type: "region"

Generated using TypeDoc