function addEventListener
Overload 1
#addEventListener<K extends keyof WindowEventMap>(type: K,listener: (this: Window,ev: WindowEventMap[K],) => any,options?: boolean | AddEventListenerOptions,): voidRegisters 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'));
Type Parameters #
#K extends keyof WindowEventMapParameters #
#listener: (this: Window,ev: WindowEventMap[K],) => anyoptional
#options: boolean | AddEventListenerOptionsReturn Type #
voidOverload 2
#addEventListener(type: string,listener: EventListenerOrEventListenerObject,options?: boolean | AddEventListenerOptions,): voidParameters #
#type: string#listener: EventListenerOrEventListenerObjectoptional
#options: boolean | AddEventListenerOptionsReturn Type #
void