UNPKG

zeno-db

Version:

A lightweight, offline-first client-side database with automatic sync capabilities

12 lines (11 loc) 276 B
interface ZenoSyncServerConfig { port: number; pg: { connectionString: string; table: string; maxRetries?: number; retryInterval?: number; }; } export declare function startSyncServer(config: ZenoSyncServerConfig): void; export {};