gatelogue-types
    Preparing search index...

    Interface AirAirport<S>

    interface AirAirport<S extends boolean = true> {
        code: string;
        coordinates: null | { s: string[]; v: [number, number] };
        gates: Sourced<number, S>[];
        i: number;
        link: null | Sourced<string, S>;
        name: null | Sourced<string, S>;
        proximity: Record<
            string,
            { s: string[]; v: { distance: number; explicit: boolean } },
        >;
        shared_facility: { s: string[]; v: number }[];
        source: string[];
        type: string;
        world: null | { s: string[]; v: World };
    }

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

    code: string
    coordinates: null | { s: string[]; v: [number, number] }
    gates: Sourced<number, S>[]
    i: number
    link: null | Sourced<string, S>
    name: null | Sourced<string, S>
    proximity: Record<
        string,
        { s: string[]; v: { distance: number; explicit: boolean } },
    >
    shared_facility: { s: string[]; v: number }[]
    source: string[]
    type: string
    world: null | { s: string[]; v: World }