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.
17 lines • 365 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Rect object.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGRect
*/
class SVGRect {
constructor() {
this.x = 0;
this.y = 0;
this.width = 0;
this.height = 0;
}
}
exports.default = SVGRect;
//# sourceMappingURL=SVGRect.cjs.map
;