Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BackgroundFetch

Promise representing an in-progress {@link LRUCache#fetch} call

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

§Type Parameters

§Type

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