bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
14 lines (13 loc) • 423 B
TypeScript
import { BitPayClient } from './BitPayClient';
import { CurrencyInterface } from '../Model/Currency/Currency';
export declare class CurrencyClient {
private bitPayClient;
constructor(bitPayClient: BitPayClient);
/**
* Retrieve the Currency Info
*
* @param currencyCode
* @returns CurrencyInterface|null
*/
getCurrencyInfo(currencyCode: string): Promise<CurrencyInterface | null>;
}