Skip to main content
Module

x/earthstar/src/entries/universal.ts>SyncAgentStatus

Storage for private, distributed, offline-first applications.
Go to Latest
type alias SyncAgentStatus
import { type SyncAgentStatus } from "https://deno.land/x/earthstar@v10.0.2/src/entries/universal.ts";

The current status of a SyncAgent.

definition: { requestedCount: number; receivedCount: number; sentCount: number; status:
| "preparing"
| "reconciling"
| "gossiping"
| "done"
| "aborted"
; }