Skip to main content
Latest
function addEventListener
import { addEventListener } from "https://deno.land/x/tl_log@0.1.2/examples/deploy.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: string
optional
options: boolean | AddEventListenerOptions | undefined

Parameters

type: "fetch"
callback: FetchEventListenerOrFetchEventListenerObject | null
optional
options: boolean | AddEventListenerOptions | undefined