interface ApplicationCache
implements EventTarget
import { type ApplicationCache } from "https://deno.land/x/evt@v2.4.20/lib/types/lib.dom.ts";
Properties
deprecated
oncached: ((this: ApplicationCache, ev: Event) => any) | nulldeprecated
onchecking: ((this: ApplicationCache, ev: Event) => any) | nulldeprecated
ondownloading: ((this: ApplicationCache, ev: Event) => any) | nulldeprecated
onerror: ((this: ApplicationCache, ev: Event) => any) | nulldeprecated
onnoupdate: ((this: ApplicationCache, ev: Event) => any) | nulldeprecated
onobsolete: ((this: ApplicationCache, ev: Event) => any) | nulldeprecated
onprogress: ((this: ApplicationCache, ev: ProgressEvent<ApplicationCache>) => any) | nulldeprecated
onupdateready: ((this: ApplicationCache, ev: Event) => any) | nullMethods
addEventListener<K extends keyof ApplicationCacheEventMap>(): void
type: K,
listener: (this: ApplicationCache, ev: ApplicationCacheEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof ApplicationCacheEventMap>(): void
type: K,
listener: (this: ApplicationCache, ev: ApplicationCacheEventMap[K]) => any,
options?: boolean | EventListenerOptions,