Skip to main content
Module

x/commandis/mod.ts>dom.ServiceWorker

Official framework for Corddis lib ( for Deno only )
Latest
interface dom.ServiceWorker
import { type dom } from "https://deno.land/x/commandis@v0.6.5/mod.ts";
const { ServiceWorker } = dom;

This ServiceWorker API interface provides a reference to a service worker. Multiple browsing contexts (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique ServiceWorker object.

Properties

onstatechange: ((this: ServiceWorker, ev: Event) => any) | null
readonly
scriptURL: string
readonly
state: ServiceWorkerState

Methods

postMessage(message: any, transfer: Transferable[]): void
postMessage(message: any, options?: PostMessageOptions): void
addEventListener<K extends keyof ServiceWorkerEventMap>(
type: K,
listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof ServiceWorkerEventMap>(
type: K,
listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void