"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.XmlCdata = void 0; const XmlNode_js_1 = require("./XmlNode.js"); const XmlText_js_1 = require("./XmlText.js"); /** * A CDATA section within an XML document. */ class XmlCdata extends XmlText_js_1.XmlText { get type() { return XmlNode_js_1.XmlNode.TYPE_CDATA; } } exports.XmlCdata = XmlCdata; //# sourceMappingURL=XmlCdata.js.map