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