Skip to main content
Module

x/evt/lib/types/lib.dom.ts>SVGClipPathElement

💧EventEmitter's typesafe replacement
Go to Latest
interface SVGClipPathElement
implements SVGElement
import { type SVGClipPathElement } from "https://deno.land/x/evt@v2.3.1/lib/types/lib.dom.ts";

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

Properties

readonly
clipPathUnits: SVGAnimatedEnumeration
readonly
transform: SVGAnimatedTransformList

Methods

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