@platform/cell.typesystem
Version:
The 'strongly typed sheets' system of the CellOS.
9 lines (8 loc) • 332 B
TypeScript
import { t } from '../common';
import { wrapFetch } from './TypeCache.wrapFetch';
import { TypeCacheKey } from './TypeCacheKey';
export declare class TypeCache {
static create: (cache?: t.IMemoryCache<string> | undefined) => t.IMemoryCache<string>;
static key: typeof TypeCacheKey;
static wrapFetch: typeof wrapFetch;
}