interface dom.HTMLTableCaptionElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/types/index.ts";
const { HTMLTableCaptionElement } = dom;
Special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating table caption elements.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableCaptionElement, 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: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,