Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/yxz/typing/lib.dom.ts>HTMLBRElement

Deno Standard Extensions
Go to Latest
interface HTMLBRElement
implements HTMLElement
import { type HTMLBRElement } from "https://deno.land/x/yxz@0.17.0/typing/lib.dom.ts";

A HTML line break element (). It inherits from HTMLElement.

Properties

deprecated
clear: string

Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.

Methods

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