@foxglove/xmlrpc
Version:
TypeScript library implementing an XMLRPC client and server with pluggable server backend
14 lines • 367 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomType = void 0;
class CustomType {
constructor(raw) {
this.raw = raw;
this.tagName = "customType";
}
serialize(xml) {
return xml.ele(this.tagName).txt(this.raw);
}
}
exports.CustomType = CustomType;
//# sourceMappingURL=CustomType.js.map