UNPKG

bitpay-sdk

Version:

Complete version of the NodeJS library for the new cryptographically secure BitPay API

14 lines (13 loc) 316 B
export interface PayoutTransactionInterface { txid: string; amount: number; date: string; confirmations?: number; } export declare class PayoutTransaction implements PayoutTransactionInterface { txid: string; amount: number; date: string; confirmations?: number; constructor(); }