UNPKG

@platform/cell.schema

Version:

URI and database schemas for the `cell.os`.

23 lines (22 loc) 720 B
import * as t from '../types'; export { Subject } from 'rxjs'; export { IMemoryCache } from '@platform/cache/lib/types'; export { IFs } from '@platform/fs.types'; export { Json } from '@platform/types'; export * from '@platform/cell.types'; export * from '@platform/fsdb.types'; export * from '../types'; export declare type SchemaFileType = 'FILE'; export declare type SchemaCoordType = 'CELL' | 'COL' | 'ROW'; export declare type SchemaType<T extends t.IUri> = t.IUriParts<T> & { path: string; }; export declare type DbPathString = string; export declare type UriString = string; export declare type IPackage = { name: string; version: string; dependencies?: { [key: string]: string; }; };