interface HTMLPreElement
implements HTMLElement
import { type HTMLPreElement } from "https://deno.land/x/evt@v2.5.3/lib/types/lib.dom.ts";
Exposes specific properties and methods (beyond those of the HTMLElement interface it also has available to it by inheritance) for manipulating a block of preformatted text ().
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLPreElement, 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: HTMLPreElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,