UNPKG

rxdb

Version:

A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/

7 lines (6 loc) 381 B
import type { DeepReadonly, RxJsonSchema } from '../../types'; import type { RxStateDocument } from './types'; export declare const RX_STATE_SCHEMA_TITLE = "RxStateCollection"; export declare const RX_STATE_ID_LENGTH = 14; export declare const RX_STATE_COLLECTION_SCHEMA: DeepReadonly<RxJsonSchema<RxStateDocument>>; export declare function nextRxStateId(lastId?: string): string;