btcpay-greenfield-node-client
Version:
## Installation
20 lines (19 loc) • 592 B
TypeScript
import type { ApplicationServerInfoNodeStatusData } from './ApplicationServerInfoNodeStatusData';
/**
* Detailed sync status
*/
export declare type ApplicationServerInfoSyncStatusData = {
/**
* The CryptoCode of the crypto currency (eg. BTC)
*/
cryptoCode?: string;
nodeInformation?: ApplicationServerInfoNodeStatusData;
/**
* The height of the chain of header of the internal indexer
*/
chainHeight?: number;
/**
* The height of the latest indexed block of the internal indexer
*/
syncHeight?: number | null;
};