gatelogue-types
    Preparing search index...

    Interface AirAirport<S>

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

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

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