import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/types/index.ts";
const { HTMLBodyElement } = dom;
Provides special properties (beyond those inherited from the regular HTMLElement interface) for manipulating elements.
Properties
deprecated
onorientationchange: ((this: HTMLBodyElement, ev: Event) => any) | nullMethods
addEventListener<K extends keyof HTMLBodyElementEventMap>(): void
type: K,
listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLBodyElementEventMap>(): void
type: K,
listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,