@platform/cell.typesystem
Version:
The 'strongly typed sheets' system of the CellOS.
16 lines (15 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TypedSheetRef = void 0;
var TypedSheetRef = (function () {
function TypedSheetRef(args) {
this._ctx = args.ctx;
this.typeDef = args.typeDef;
this.typename = args.typename;
}
TypedSheetRef.create = function (args) {
return new TypedSheetRef(args);
};
return TypedSheetRef;
}());
exports.TypedSheetRef = TypedSheetRef;