@squawk
    Preparing search index...

    Interface FetchWeatherOptions

    Options shared by every fetch* function in this module.

    interface FetchWeatherOptions {
        baseUrl?: string;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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.

    signal?: AbortSignal

    AbortSignal used to cancel the underlying HTTP request.