@ablestack/rdo
Version:
A library to facilitate building and running graphs of Reactive Domain Objects - connecting JSON data sources to reactive client applications
21 lines • 837 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SourcePrimitiveNW = void 0;
const source_base_nw_1 = require("../base/source-base-nw");
class SourcePrimitiveNW extends source_base_nw_1.SourceBaseNW {
constructor({ value, sourceNodeTypePath, sourceNodeInstancePath, key, typeInfo, matchingNodeOptions, globalNodeOptions, }) {
super({ sourceNodeTypePath, sourceNodeInstancePath, key, typeInfo, matchingNodeOptions, globalNodeOptions });
this._value = value;
}
//------------------------------
// ISourceNodeWrapper
//------------------------------
get value() {
return this._value;
}
childElementCount() {
return 0;
}
}
exports.SourcePrimitiveNW = SourcePrimitiveNW;
//# sourceMappingURL=source-primitive-nw.js.map
;