gatelogue-types
    Preparing search index...

    Interface AirGate<S>

    interface AirGate<S extends boolean = true> {
        airline: null | Sourced<number, S>;
        airport: Sourced<number, S>;
        code: null | string;
        flights: Sourced<number, S>[];
        i: number;
        size: null | Sourced<string, S>;
        source: string[];
        type: string;
    }

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

    airline: null | Sourced<number, S>
    airport: Sourced<number, S>
    code: null | string
    flights: Sourced<number, S>[]
    i: number
    size: null | Sourced<string, S>
    source: string[]
    type: string