import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/index.ts";
const { HTMLAreaElement } = dom;
Provides special properties and methods (beyond those of the regular object HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of elements.
Properties
readonly
relList: DOMTokenListMethods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,