@squawk
    Preparing search index...

    Variable AIRSPACE_TYPESConst

    AIRSPACE_TYPES: readonly [
        "CLASS_B",
        "CLASS_C",
        "CLASS_D",
        "CLASS_E2",
        "CLASS_E3",
        "CLASS_E4",
        "CLASS_E5",
        "CLASS_E6",
        "CLASS_E7",
        "MOA",
        "RESTRICTED",
        "PROHIBITED",
        "WARNING",
        "ALERT",
        "NSA",
        "ARTCC",
    ] = ...

    The full set of AirspaceType values, in declaration order.

    Use as the single source of truth for value-side iteration (e.g. building a lookup table keyed by airspace type) or with isAirspaceType to narrow an external string into the union. The as const satisfies brand keeps this array in sync with the type at compile time - adding a new union member without updating the array fails the build.