Amazon Vinyl
    Preparing search index...

    Type Alias CacheManagerOptions

    type CacheManagerOptions = {
        name?: string;
        requestFromNetwork?: (request: RequestInfo) => Promise<Response>;
    }
    Index
    name?: string

    The name of the cache key.

    requestFromNetwork?: (request: RequestInfo) => Promise<Response>

    The fetch-from-network method. Defaults to window.fetch.