interface HTMLMetaElement
implements HTMLElement
import { type HTMLMetaElement } from "https://deno.land/x/evt@v2.5.6/lib/types/lib.dom.ts";
Contains descriptive metadata about a document. It inherits all of the properties and methods described in the HTMLElement interface.
Properties
Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLMetaElement, 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: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,