@squawk
    Preparing search index...

    Interface AirportSearchQuery

    Options for a text search query against airport names and cities.

    interface AirportSearchQuery {
        limit?: number;
        text: string;
        types?: ReadonlySet<FacilityType>;
    }
    Index

    Properties

    Properties

    limit?: number

    Maximum number of results to return. Defaults to 20.

    text: string

    Case-insensitive substring to match against airport name or city.

    types?: ReadonlySet<FacilityType>

    Optional set of facility types to include. When omitted, all types are included.