@pact-foundation/pact
Version:
Pact for all things Javascript
15 lines • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.XmlText = void 0;
const xmlNode_1 = require("./xmlNode");
class XmlText extends xmlNode_1.XmlNode {
content;
matcher;
constructor(content, matcher) {
super();
this.content = content;
this.matcher = matcher;
}
}
exports.XmlText = XmlText;
//# sourceMappingURL=xmlText.js.map