Skip to main content
Module

x/evt/lib/types/index.ts>dom.HTMLStyleElement

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.HTMLStyleElement
implements HTMLElement, LinkStyle
import { type dom } from "https://deno.land/x/evt@v2.3.1/lib/types/index.ts";
const { HTMLStyleElement } = dom;

A element. It inherits properties and methods from its parent, HTMLElement, and from LinkStyle.

Properties

media: string

Sets or retrieves the media type.

deprecated
type: string

Methods

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