UNPKG

nowpayments-api-typescript

Version:
9 lines (8 loc) 253 B
import { IError } from './../interfaces'; export interface GetCurrenciesResponse { currencies: [string]; } declare const getCurrencies: ({ apiKey, }: { apiKey: string; }) => Promise<GetCurrenciesResponse | IError>; export default getCurrencies;