|
- "use strict";
- 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.js.map
|