Skip to main content
Module

x/netzo/deno.d.ts>addEventListener

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function addEventListener
import { addEventListener } from "https://deno.land/x/netzo@v0.1.11/deno.d.ts";

Registers an event listener in the global scope, which will be called synchronously whenever the event type is dispatched.

addEventListener('unload', () => { console.log('All finished!'); });
...
dispatchEvent(new Event('unload'));

Parameters

type: K
listener: (this: Window, ev: WindowEventMap[K]) => any
optional
options: boolean | AddEventListenerOptions

Parameters

type: string
optional
options: boolean | AddEventListenerOptions