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.
32 lines • 844 B
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.cjs';
/**
* SVGFEPointLightElement.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
*/
export default class SVGFEPointLightElement extends SVGElement {
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
/**
* Returns x.
*
* @returns X.
*/
get x(): SVGAnimatedNumber;
/**
* Returns y.
*
* @returns Y.
*/
get y(): SVGAnimatedNumber;
/**
* Returns z.
*
* @returns Z.
*/
get z(): SVGAnimatedNumber;
}
//# sourceMappingURL=SVGFEPointLightElement.d.ts.map