interface dom.HTMLBaseElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.19/lib/index.ts";
const { HTMLBaseElement } = dom;
Contains the base URI for a document. This object inherits all of the properties and methods as described in the HTMLElement interface.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLBaseElement, 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: HTMLBaseElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,