版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

14 строки
306 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. * SVG number.
  5. *
  6. * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGNumber
  7. */
  8. class SVGNumber {
  9. constructor() {
  10. this.value = 0;
  11. }
  12. }
  13. exports.default = SVGNumber;
  14. //# sourceMappingURL=SVGNumber.js.map