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.
98 lines • 2.85 kB
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
import SVGAnimatedString from '../../svg/SVGAnimatedString.cjs';
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.cjs';
import SVGAnimatedInteger from '../../svg/SVGAnimatedInteger.cjs';
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.cjs';
/**
* SVGFETurbulenceElement.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
*/
export default class SVGFETurbulenceElement extends SVGElement {
static readonly SVG_TURBULENCE_TYPE_UNKNOWN = 0;
static readonly SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
static readonly SVG_TURBULENCE_TYPE_TURBULENCE = 2;
static readonly SVG_STITCHTYPE_UNKNOWN = 0;
static readonly SVG_STITCHTYPE_STITCH = 1;
static readonly SVG_STITCHTYPE_NOSTITCH = 2;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedInteger | null;
[ ]: SVGAnimatedString | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedEnumeration | null;
[ ]: SVGAnimatedEnumeration | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
/**
* Returns baseFrequencyX.
*
* @returns Base frequency x.
*/
get baseFrequencyX(): SVGAnimatedNumber;
/**
* Returns baseFrequencyY.
*
* @returns Base frequency y.
*/
get baseFrequencyY(): SVGAnimatedNumber;
/**
* Returns height.
*
* @returns Height.
*/
get height(): SVGAnimatedLength;
/**
* Returns numOctaves.
*
* @returns Num octaves.
*/
get numOctaves(): SVGAnimatedInteger;
/**
* Returns result.
*
* @returns Result.
*/
get result(): SVGAnimatedString;
/**
* Returns seed.
*
* @returns Seed.
*/
get seed(): SVGAnimatedNumber;
/**
* Returns stitchTiles.
*
* @returns Stitch tiles.
*/
get stitchTiles(): SVGAnimatedEnumeration;
/**
* Returns type.
*
* @returns Type.
*/
get type(): SVGAnimatedEnumeration;
/**
* Returns width.
*
* @returns Width.
*/
get width(): SVGAnimatedLength;
/**
* Returns x.
*
* @returns X.
*/
get x(): SVGAnimatedLength;
/**
* Returns y.
*
* @returns Y.
*/
get y(): SVGAnimatedLength;
}
//# sourceMappingURL=SVGFETurbulenceElement.d.ts.map