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.
25 lines • 766 B
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.cjs';
/**
* SVGFEDistantLightElement.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
*/
export default class SVGFEDistantLightElement extends SVGElement {
[ ]: SVGAnimatedNumber | null;
[ ]: SVGAnimatedNumber | null;
/**
* Returns azimuth.
*
* @returns Azimuth.
*/
get azimuth(): SVGAnimatedNumber;
/**
* Returns elevation.
*
* @returns Elevation.
*/
get elevation(): SVGAnimatedNumber;
}
//# sourceMappingURL=SVGFEDistantLightElement.d.ts.map