interface HTMLMeterElement
implements HTMLElement
import { type HTMLMeterElement } from "https://deno.land/x/evt@v2.4.19/lib/types/lib.dom.ts";
The HTML elements expose the HTMLMeterElement interface, which provides special properties and methods (beyond the HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of elements.
Properties
readonly
labels: NodeListOf<HTMLLabelElement>Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLMeterElement, 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: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,