gatelogue-types
    Preparing search index...

    Interface RailLine<S>

    interface RailLine<S extends boolean = true> {
        code: string;
        colour: null | Sourced<string, S>;
        company: Sourced<number, S>;
        i: number;
        mode: null | Sourced<RailMode, S>;
        name: null | Sourced<string, S>;
        ref_station: Sourced<number, S>;
        source: string[];
        type: string;
    }

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

    code: string
    colour: null | Sourced<string, S>
    company: Sourced<number, S>
    i: number
    mode: null | Sourced<RailMode, S>
    name: null | Sourced<string, S>
    ref_station: Sourced<number, S>
    source: string[]
    type: string