UNPKG

bitpay-sdk

Version:

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

18 lines (17 loc) 393 B
export interface WithHoldingsInterface { amount: number; code: string; description?: string; notes?: string; label?: string; bankCountry?: string; } export declare class WithHoldings implements WithHoldingsInterface { amount: number; code: string; description?: string; notes?: string; label?: string; bankCountry?: string; constructor(); }