geoview-core - v2.3.0
    Preparing search index...

    Type Alias FetchWithProxyResult<T>

    Result from a fetch operation that may have required a proxy fallback.

    type FetchWithProxyResult<T> = {
        data: T;
        proxyUsed?: string;
    }

    Type Parameters

    • T
    Index
    data: T

    The fetched data.

    proxyUsed?: string

    The proxy URL that was used, or undefined if no proxy was needed.