type alias CacheStorageimport { type CacheStorage } from "https://deno.land/x/frugal@0.9.2/src/cache/CacheStorage.ts"; definition: { set(key: string, content: string): Promise<void>; get(key: string): Promise<string | undefined>; delete(key: string): Promise<void>; }