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

DOMEventMap

Helper type that maps event names to event object types, but includes events that TypeScript's HTMLElementEventMap doesn't know about.

interface DOMEventMap extends HTMLElementEventMap {
[event: string]: any;
}

§Extends

§
HTMLElementEventMap
[src]

§Index Signatures

§
[event: string]: any