Skip to main content
Module

x/evt/mod.ts>dom.HTMLPreElement

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.HTMLPreElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.3.1/mod.ts";
const { HTMLPreElement } = dom;

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 ().

Properties

deprecated
width: number

Methods

addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void