SyncState
export interface SyncState {
status: SyncStatus;
phase: SyncStatePhase;
progress?: number; // 0..100
error?: Error; // If phase === "error"
}
export type SyncStatus =
| "not-started"
| "connecting"
| "connected"
| "disconnected"
| "error"
| "offline";
export type SyncStatePhase =
| "initial"
| "not-in-sync"
| "pushing"
| "pulling"
| "in-sync"
| "error"
| "offline";
Dexie Cloud Docs
- Access Control in Dexie Cloud
- Authentication in Dexie Cloud
- Consistency in Dexie Cloud
- DBPermissionSet
- Dexie Cloud CLI
- Dexie Cloud Docs
- Dexie Cloud REST API
- DexieCloudOptions
- Invite
- Purchase Subscription
- Run Dexie Cloud on Own Servers
- Sharding and Scalability
- SyncState
- UserLogin
- db.cloud.configure()
- db.cloud.currentUser
- dexie-cloud-addon