版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011121314151617
  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