UNPKG

@provablehq/sdk

Version:

A Software Development Kit (SDK) for Zero-Knowledge Transactions

14 lines (13 loc) 303 B
/** * StatusResponse is a type that represents a response from a record scanning service's status endpoint. * * @example * const statusResponse: StatusResponse = { * synced: true, * percentage: 100, * } */ export interface StatusResponse { synced: boolean; percentage: number; }