UNPKG

supastash

Version:

Offline-first sync engine for Supabase in React Native using SQLite

13 lines (11 loc) 292 B
export type SyncResult = { success: string[]; // IDs that were successfully upserted skipped: { id: string; reason: string }[]; // IDs that were skipped with reason }; export type TableSchema = { name: string; type: string; notnull: boolean; dflt_value: string; pk: number; };