lru-cache
    Preparing search index...

    Type Alias BackgroundFetch<V>

    BackgroundFetch: Promise<V | undefined> & {
        __abortController: AbortController;
        __returned: BackgroundFetch<V> | undefined;
        __staleWhileFetching: V | undefined;
    }

    Promise representing an in-progress LRUCache#fetch call

    Type Parameters

    • V