UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

82 lines 2.31 kB
import SVGElement from '../svg-element/SVGElement.cjs'; import * as PropertySymbol from '../../PropertySymbol.cjs'; import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs'; import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.cjs'; import SVGAnimatedString from '../../svg/SVGAnimatedString.cjs'; import SVGAnimatedNumberList from '../../svg/SVGAnimatedNumberList.cjs'; /** * SVG FE Color Matrix Element. * * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement */ export default class SVGFEColorMatrixElement extends SVGElement { static SVG_FEBLEND_TYPE_UNKNOWN: number; static SVG_FEBLEND_TYPE_MATRIX: number; static SVG_FEBLEND_TYPE_SATURATE: number; static SVG_FEBLEND_TYPE_HUEROTATE: number; static SVG_FEBLEND_TYPE_LUMINANCETOALPHA: number; [PropertySymbol.height]: SVGAnimatedLength | null; [PropertySymbol.in1]: SVGAnimatedString | null; [PropertySymbol.in2]: SVGAnimatedString | null; [PropertySymbol.result]: SVGAnimatedString | null; [PropertySymbol.type]: SVGAnimatedEnumeration | null; [PropertySymbol.values]: SVGAnimatedNumberList | null; [PropertySymbol.x]: SVGAnimatedLength | null; [PropertySymbol.y]: SVGAnimatedLength | null; [PropertySymbol.width]: SVGAnimatedLength | null; /** * Returns height. * * @returns Height. */ get height(): SVGAnimatedLength; /** * Returns in1. * * @returns In1. */ get in1(): SVGAnimatedString; /** * Returns in2. * * @returns In2. */ get in2(): SVGAnimatedString; /** * Returns result. * * @returns Result. */ get result(): SVGAnimatedString; /** * Returns type. * * @returns Type. */ get type(): SVGAnimatedEnumeration; /** * Returns values. * * @returns Values. */ get values(): SVGAnimatedNumberList; /** * Returns width. * * @returns Width. */ get width(): SVGAnimatedLength; /** * Returns x position. * * @returns X position. */ get x(): SVGAnimatedLength; /** * Returns y position. * * @returns Y position. */ get y(): SVGAnimatedLength; } //# sourceMappingURL=SVGFEColorMatrixElement.d.ts.map