UNPKG

happy-dom-without-node

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.

13 lines 322 B
import SVGRect from './SVGRect.js'; /** * Rect object. * * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimatedRect */ export default class SVGAnimatedRect { constructor() { this.baseVal = new SVGRect(); this.animVal = new SVGRect(); } } //# sourceMappingURL=SVGAnimatedRect.js.map