Type Alias WalletLoaderStatus
WalletLoaderStatus:
| { relays: string[]; type: "relays" }
| { support: Record<string, boolean>; type: "negentropy-support" }
| { type: "loading" }
| { type: "loaded" }
| { type: "syncing" }
| { count: number; type: "synced" }
| { error: Error; type: "error" }
A status update emitted while loading a wallet's events