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

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