1234567891011121314151617181920212223 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.LiteDocument = void 0;
- var Element_js_1 = require("./Element.js");
- var LiteDocument = (function () {
- function LiteDocument() {
- this.root = new Element_js_1.LiteElement('html', {}, [
- this.head = new Element_js_1.LiteElement('head'),
- this.body = new Element_js_1.LiteElement('body')
- ]);
- this.type = '';
- }
- Object.defineProperty(LiteDocument.prototype, "kind", {
- get: function () {
- return '#document';
- },
- enumerable: false,
- configurable: true
- });
- return LiteDocument;
- }());
- exports.LiteDocument = LiteDocument;
- //# sourceMappingURL=Document.js.map
|