UNPKG

paystack-sdk

Version:
11 lines (10 loc) 458 B
import { Axios } from 'axios'; import { BadRequest } from '../interface'; import { BanksResponse, CountriesResponse, ListBanksQueryParams, StatesResponse } from './interface'; export declare class Misc { private http; constructor(http: Axios); banks(query?: ListBanksQueryParams): Promise<BanksResponse | BadRequest>; countries(): Promise<CountriesResponse | BadRequest>; states(country?: string): Promise<StatesResponse | BadRequest>; }