Skip to main content
Module

x/earthstar/mod.ts>SyncAgentStatus

Earthstar is a tool for private, undiscoverable, offline-first networks.
Go to Latest
type alias SyncAgentStatus
import { type SyncAgentStatus } from "https://deno.land/x/earthstar@v10.0.0/mod.ts";

The current status of a SyncAgent.

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