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

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>HTMLElement

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
import { type HTMLElement } from "https://deno.land/x/windmill@v1.345.2/node_modules/evt/lib/types/lib.dom.d.ts";

Any HTML element. Some elements directly implement this interface, while others implement it via an interface that inherits it.

Properties

accessKey: string
readonly
accessKeyLabel: string
autocapitalize: string
dir: string
draggable: boolean
hidden: boolean
innerText: string
lang: string
readonly
offsetHeight: number
readonly
offsetLeft: number
readonly
offsetParent: Element | null
readonly
offsetTop: number
readonly
offsetWidth: number
spellcheck: boolean
title: string
translate: boolean

Methods

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