Window.js 796 B

123456789101112131415161718192021
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.LiteWindow = void 0;
  4. var Element_js_1 = require("./Element.js");
  5. var Document_js_1 = require("./Document.js");
  6. var List_js_1 = require("./List.js");
  7. var Parser_js_1 = require("./Parser.js");
  8. var LiteWindow = (function () {
  9. function LiteWindow() {
  10. this.DOMParser = Parser_js_1.LiteParser;
  11. this.NodeList = List_js_1.LiteList;
  12. this.HTMLCollection = List_js_1.LiteList;
  13. this.HTMLElement = Element_js_1.LiteElement;
  14. this.DocumentFragment = List_js_1.LiteList;
  15. this.Document = Document_js_1.LiteDocument;
  16. this.document = new Document_js_1.LiteDocument();
  17. }
  18. return LiteWindow;
  19. }());
  20. exports.LiteWindow = LiteWindow;
  21. //# sourceMappingURL=Window.js.map