UNPKG

@platform/cell.typesystem

Version:

The 'strongly typed sheets' system of the CellOS.

30 lines (29 loc) 1.34 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TypeSystem = void 0; var TypeSystem_builder_1 = require("./TypeSystem.builder"); var TypeSystem_cache_1 = require("./TypeSystem.cache"); var TypeSystem_core_1 = require("./TypeSystem.core"); var TypeSystem_fetch_1 = require("./TypeSystem.fetch"); var TypeSystem_sheet_1 = require("./TypeSystem.sheet"); var util_1 = require("./util"); var TypeSystem = (function () { function TypeSystem() { } TypeSystem.Client = TypeSystem_core_1.TypeClient; TypeSystem.Cache = TypeSystem_cache_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.Pool = TypeSystem_sheet_1.SheetPool; TypeSystem.ChangeMonitor = TypeSystem_sheet_1.ChangeMonitor; TypeSystem.client = TypeSystem_core_1.TypeClient.client; TypeSystem.fetcher = TypeSystem_fetch_1.fetcher; TypeSystem.objectToCells = util_1.objectToCells; TypeSystem.def = TypeSystem_builder_1.TypeBuilder.create; TypeSystem.typescript = TypeSystem_core_1.TypeClient.typescript; TypeSystem.TypeScript = TypeSystem_core_1.TypeScript; return TypeSystem; }()); exports.TypeSystem = TypeSystem;