Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/src/ogone.dom.d.ts>CacheStorage

Advanced Web Composition for Future
Latest
interface CacheStorage
import { type CacheStorage } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

The storage for Cache objects.

Methods

delete(cacheName: string): Promise<boolean>
has(cacheName: string): Promise<boolean>
keys(): Promise<string[]>
match(request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>
open(cacheName: string): Promise<Cache>