Skip to main content
Module

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

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

Corresponds to the element.

Properties

readonly
in1: SVGAnimatedString
readonly
in2: SVGAnimatedString
readonly
SVG_FEBLEND_MODE_COLOR: number
readonly
SVG_FEBLEND_MODE_COLOR_BURN: number
readonly
SVG_FEBLEND_MODE_COLOR_DODGE: number
readonly
SVG_FEBLEND_MODE_DARKEN: number
readonly
SVG_FEBLEND_MODE_DIFFERENCE: number
readonly
SVG_FEBLEND_MODE_EXCLUSION: number
readonly
SVG_FEBLEND_MODE_HARD_LIGHT: number
readonly
SVG_FEBLEND_MODE_HUE: number
readonly
SVG_FEBLEND_MODE_LIGHTEN: number
readonly
SVG_FEBLEND_MODE_LUMINOSITY: number
readonly
SVG_FEBLEND_MODE_MULTIPLY: number
readonly
SVG_FEBLEND_MODE_NORMAL: number
readonly
SVG_FEBLEND_MODE_OVERLAY: number
readonly
SVG_FEBLEND_MODE_SATURATION: number
readonly
SVG_FEBLEND_MODE_SCREEN: number
readonly
SVG_FEBLEND_MODE_SOFT_LIGHT: number
readonly
SVG_FEBLEND_MODE_UNKNOWN: number

Methods

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