Skip to main content
Module

x/evt/mod.ts>dom.ServiceWorker

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.ServiceWorker
import { type dom } from "https://deno.land/x/evt@v2.4.3/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