Skip to main content
Module

x/evt/mod.ts>dom.SVGMaskElement

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.SVGMaskElement
implements SVGElement
import { type dom } from "https://deno.land/x/evt@v2.4.13/mod.ts";
const { SVGMaskElement } = dom;

Provides access to the properties of elements, as well as methods to manipulate them.

Properties

readonly
height: SVGAnimatedLength
readonly
maskContentUnits: SVGAnimatedEnumeration
readonly
maskUnits: SVGAnimatedEnumeration
readonly
width: SVGAnimatedLength

Methods

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