gatelogue-types
    Preparing search index...

    Interface AirAirline<S>

    interface AirAirline<S extends boolean = true> {
        flights: Sourced<number, S>[];
        gates: Sourced<number, S>[];
        i: number;
        link: null | Sourced<string, S>;
        name: string;
        source: string[];
        type: string;
    }

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

    flights: Sourced<number, S>[]
    gates: Sourced<number, S>[]
    i: number
    link: null | Sourced<string, S>
    name: string
    source: string[]
    type: string