import { addEventListener } from "https://deno.land/x/levo@v0.0.27/lib/lib.deno_runtime.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
callback: EventListenerOrEventListenerObject | null
optional
options: boolean | AddEventListenerOptions | undefined