document-cloner.js 580 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var DocumentCloner = /** @class */ (function () {
  4. function DocumentCloner() {
  5. // eslint-disable-next-line @typescript-eslint/no-object-literal-type-assertion
  6. this.clonedReferenceElement = {};
  7. }
  8. DocumentCloner.prototype.toIFrame = function () {
  9. return Promise.resolve({});
  10. };
  11. DocumentCloner.destroy = function () {
  12. return true;
  13. };
  14. return DocumentCloner;
  15. }());
  16. exports.DocumentCloner = DocumentCloner;
  17. //# sourceMappingURL=document-cloner.js.map