@squawk
    Preparing search index...

    Interface FetchSigmetsOptions

    Options accepted by fetchSigmets. Extends FetchWeatherOptions with the optional hazard filter supported by the AWC airsigmet endpoint.

    interface FetchSigmetsOptions {
        baseUrl?: string;
        hazard?: SigmetHazardFilter;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    baseUrl?: string

    Override the AWC base URL. Defaults to DEFAULT_AWC_BASE_URL. Useful for pointing at a mirror or a proxy during development.

    Restrict the response to SIGMETs of the given hazard type.

    signal?: AbortSignal

    AbortSignal used to cancel the underlying HTTP request.