|
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- /**
- * SVG point.
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGPoint
- */
- class SVGPoint {
- constructor() {
- this.x = 0;
- this.y = 0;
- }
- }
- exports.default = SVGPoint;
- //# sourceMappingURL=SVGPoint.js.map
|