FsHafas-JavaScript
    Preparing search index...

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

    Properties

    Properties

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

    station ids

    type: "region"