Skip to main content
Module

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

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

Corresponds to the element.

Properties

readonly
in1: SVGAnimatedString
readonly
in2: SVGAnimatedString
readonly
k1: SVGAnimatedNumber
readonly
k2: SVGAnimatedNumber
readonly
k3: SVGAnimatedNumber
readonly
k4: SVGAnimatedNumber
readonly
operator: SVGAnimatedEnumeration
readonly
SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: number
readonly
SVG_FECOMPOSITE_OPERATOR_ATOP: number
readonly
SVG_FECOMPOSITE_OPERATOR_IN: number
readonly
SVG_FECOMPOSITE_OPERATOR_OUT: number
readonly
SVG_FECOMPOSITE_OPERATOR_OVER: number
readonly
SVG_FECOMPOSITE_OPERATOR_UNKNOWN: number
readonly
SVG_FECOMPOSITE_OPERATOR_XOR: number

Methods

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