interface HTMLParagraphElement
implements HTMLElement
import { type HTMLParagraphElement } from "https://deno.land/x/evt@v2.5.6/lib/types/lib.dom.ts";
Provides special properties (beyond those of the regular HTMLElement object interface it inherits) for manipulating elements.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLParagraphElement, 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: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,