@platform/cell.typesystem
Version:
The 'strongly typed sheets' system of the CellOS.
15 lines (14 loc) • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
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;