@platform/cell.typesystem
Version:
The 'strongly typed sheets' system of the CellOS.
24 lines (23 loc) • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var TypeSystem_core_1 = require("./TypeSystem.core");
var TypeSystem_sheet_1 = require("./TypeSystem.sheet");
var TypeSystem_util_1 = require("./TypeSystem.util");
var TypeSystem_builder_1 = require("./TypeSystem.builder");
var TypeSystem = (function () {
function TypeSystem() {
}
TypeSystem.Client = TypeSystem_core_1.TypeClient;
TypeSystem.Cache = TypeSystem_core_1.TypeCache;
TypeSystem.Target = TypeSystem_core_1.TypeTarget;
TypeSystem.Value = TypeSystem_core_1.TypeValue;
TypeSystem.Default = TypeSystem_core_1.TypeDefault;
TypeSystem.Sheet = TypeSystem_sheet_1.TypedSheet;
TypeSystem.ChangeMonitor = TypeSystem_sheet_1.ChangeMonitor;
TypeSystem.client = TypeSystem_core_1.TypeClient.client;
TypeSystem.fetcher = TypeSystem_util_1.fetcher;
TypeSystem.objectToCells = TypeSystem_util_1.objectToCells;
TypeSystem.def = TypeSystem_builder_1.TypeBuilder.create;
return TypeSystem;
}());
exports.TypeSystem = TypeSystem;