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.
39 lines • 1.12 kB
TypeScript
import * as PropertySymbol from '../../PropertySymbol.cjs';
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
import SVGGradientElement from '../svg-gradient-element/SVGGradientElement.cjs';
/**
* SVG LinearGradient Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
*/
export default class SVGLinearGradientElement extends SVGGradientElement {
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
[ ]: SVGAnimatedLength | null;
/**
* Returns x1 position.
*
* @returns X1 position.
*/
get x1(): SVGAnimatedLength;
/**
* Returns y1 position.
*
* @returns Y1 position.
*/
get y1(): SVGAnimatedLength;
/**
* Returns x2 position.
*
* @returns X2 position.
*/
get x2(): SVGAnimatedLength;
/**
* Returns y2 position.
*
* @returns Y2 position.
*/
get y2(): SVGAnimatedLength;
}
//# sourceMappingURL=SVGLinearGradientElement.d.ts.map