interface CacheStorage {
    delete(cacheName): Promise<boolean>;
    has(cacheName): Promise<boolean>;
    keys(): Promise<string[]>;
    match(request, options?): Promise<undefined | Response>;
    open(cacheName): Promise<"/home/runner/work/amplify-js/amplify-js/amplify-js/packages/adapter-nextjs/node_modules/undici-types/index".Cache>;
}

Methods

  • Parameters

    • cacheName: string

    Returns Promise<boolean>

  • Parameters

    • cacheName: string

    Returns Promise<boolean>

  • Returns Promise<string[]>