Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HTMLFrameSetElement

deprecated

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

interface HTMLFrameSetElement extends HTMLElement, WindowEventHandlers {
cols: string;
rows: string;
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;
}
var HTMLFrameSetElement: {
prototype: HTMLFrameSetElement;
}
;

§Extends

§Properties

§
cols: string
[src]

Sets or retrieves the frame widths of the object.

§
rows: string
[src]

Sets or retrieves the frame heights of the object.

§Methods

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