interface HTMLTableCellElement
implements HTMLElement
import { type HTMLTableCellElement } from "https://deno.land/x/evt@v2.4.20/lib/types/lib.dom.ts";
Provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of table cells, either header or data cells, in an HTML document.
Properties
Sets or retrieves the group of cells in a table to which the object's information applies.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableCellElement, 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: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,