UNPKG

bitpay-sdk

Version:

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

14 lines (13 loc) 309 B
/** * The type Currency qr. * * @see <a href="https://bitpay.com/api/#rest-api-resources-wallets">Wallets</a> */ export interface CurrencyQrInterface { type: string; collapsed?: string; } export declare class CurrencyQr implements CurrencyQrInterface { type: string; collapsed?: string; }