UNPKG

@tonk/keepsync

Version:

A reactive sync engine framework for use with Tonk apps

10 lines (9 loc) 251 B
export interface SyncEngineConfig { url: string; storage: SyncParameterConfig<'nodefs' | 'indexeddb' | undefined>; network: SyncParameterConfig<'ws' | undefined>; } export type SyncParameterConfig<T> = { type: T; metadata: any; };