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.
46 lines • 1.19 kB
TypeScript
import * as PropertySymbol from '../../PropertySymbol.cjs';
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
import SVGGradientElement from '../svg-gradient-element/SVGGradientElement.cjs';
/**
* SVG Radial Gradient Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
*/
export default class SVGRadialGradientElement extends SVGGradientElement {
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
/**
* Returns cx.
*
* @returns Cx.
*/
get cx(): SVGAnimatedLength;
/**
* Returns cy.
*
* @returns Cy.
*/
get cy(): SVGAnimatedLength;
/**
* Returns r.
*
* @returns R.
*/
get r(): SVGAnimatedLength;
/**
* Returns fx.
*
* @returns Fx.
*/
get fx(): SVGAnimatedLength;
/**
* Returns fy.
*
* @returns Fy.
*/
get fy(): SVGAnimatedLength;
}
//# sourceMappingURL=SVGRadialGradientElement.d.ts.map