Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

addEventListener

function addEventListener<K extends keyof WindowEventMap>(
type: K,
listener: (this: Window, ev: WindowEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;
function addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void;
§
addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void
[src]

§Type Parameters

§
K extends keyof WindowEventMap
[src]

§Parameters

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

§Return Type

§
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void
[src]

§Parameters

§
type: string
[src]
§
options?: boolean | AddEventListenerOptions optional
[src]

§Return Type