gatelogue-types
    Preparing search index...

    Interface RailCompany<S>

    interface RailCompany<S extends boolean = true> {
        i: number;
        lines: Sourced<number, S>[];
        local: boolean;
        name: string;
        source: string[];
        stations: Sourced<number, S>[];
        type: string;
    }

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

    i: number
    lines: Sourced<number, S>[]
    local: boolean
    name: string
    source: string[]
    stations: Sourced<number, S>[]
    type: string