Skip to main content
Module

x/commandis/mod.ts>dom.HTMLFrameSetElement

Official framework for Corddis lib ( for Deno only )
Latest
interface dom.HTMLFrameSetElement
import { type dom } from "https://deno.land/x/commandis@v0.6.5/mod.ts";
const { HTMLFrameSetElement } = dom;

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