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.
90 lines • 2.53 kB
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.cjs';
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
import SVGAnimatedString from '../../svg/SVGAnimatedString.cjs';
/**
* SVGFESpecularLightingElement.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
*/
export default class SVGFESpecularLightingElement extends SVGElement {
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedString | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedString | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
/**
* Returns height.
*
* @returns Height.
*/
get height(): SVGAnimatedLength;
/**
* Returns in1.
*
* @returns In1.
*/
get in1(): SVGAnimatedString;
/**
* Returns kernelUnitLengthX.
*
* @returns KernelUnitLengthX.
*/
get kernelUnitLengthX(): SVGAnimatedNumber;
/**
* Returns kernelUnitLengthY.
*
* @returns KernelUnitLengthY.
*/
get kernelUnitLengthY(): SVGAnimatedNumber;
/**
* Returns result.
*
* @returns Result.
*/
get result(): SVGAnimatedString;
/**
* Returns specularConstant.
*
* @returns SpecularConstant.
*/
get specularConstant(): SVGAnimatedNumber;
/**
* Returns specularExponent.
*
* @returns SpecularExponent.
*/
get specularExponent(): SVGAnimatedNumber;
/**
* Returns surfaceScale.
*
* @returns SurfaceScale.
*/
get surfaceScale(): SVGAnimatedNumber;
/**
* 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=SVGFESpecularLightingElement.d.ts.map