rhine-var
Version:
Variables that support multi-user collaboration and persistence, making collaboration and variable operations as simple as possible, with strict and well-defined type hints.
15 lines (14 loc) • 584 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const rhine_var_base_class_1 = __importDefault(require("../rhine-var-base.class"));
const native_type_enum_1 = require("../../native/native-type.enum");
class RhineVarXmlText extends rhine_var_base_class_1.default {
constructor() {
super(...arguments);
this._type = native_type_enum_1.NativeType.XmlText;
}
}
exports.default = RhineVarXmlText;