UNPKG

nowpayments-api-typescript

Version:
11 lines (10 loc) 336 B
import { AxiosInstance, AxiosResponse } from 'axios'; export default class ApiConnection { apiKey: string; api: AxiosInstance; constructor({ apiKey }: { apiKey: string; }); get(url: string, params?: object): Promise<AxiosResponse<any>>; post(url: string, params?: object): Promise<AxiosResponse<any>>; }