Skip to main content
Module

x/evt/lib/types/lib.dom.ts>HTMLFrameSetElement

💧EventEmitter's typesafe replacement
Go to Latest
interface HTMLFrameSetElement
import { type HTMLFrameSetElement } from "https://deno.land/x/evt@v2.3.1/lib/types/lib.dom.ts";

Provides special properties (beyond those of the regular HTMLElement interface they also inherit) for manipulating elements.

Properties

deprecated
cols: string
deprecated
rows: string

Methods

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