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>HTMLOutputElement

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
interface HTMLOutputElement
implements HTMLElement
import { type HTMLOutputElement } from "https://deno.land/x/windmill@v1.345.2/node_modules/evt/lib/types/lib.dom.d.ts";

Provides properties and methods (beyond those inherited from HTMLElement) for manipulating the layout and presentation of elements.

Properties

defaultValue: string
readonly
form: HTMLFormElement | null
readonly
htmlFor: DOMTokenList
readonly
labels: NodeListOf<HTMLLabelElement>
name: string
readonly
type: string
readonly
validationMessage: string
readonly
validity: ValidityState
value: string
readonly
willValidate: boolean

Methods

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