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

17 строки
377 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. * DOM Matrix.
  5. *
  6. * TODO: Not fully implemented.
  7. *
  8. * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix
  9. */
  10. class DOMMatrix {
  11. constructor() {
  12. this.is2D = false;
  13. this.isIdentity = false;
  14. }
  15. }
  16. exports.default = DOMMatrix;
  17. //# sourceMappingURL=DOMMatrix.js.map