UNPKG

geezsms

Version:
10 lines (9 loc) 467 B
import { AxiosInstance } from 'axios'; import ArifpayTransferResponse from '../interface/arifpaytransferresponse'; declare class Awash { _httpClient: AxiosInstance; constructor(_httpClient: AxiosInstance); transfer(checkoutSessionID: string, phoneNumber: string, debitAccount: string): Promise<ArifpayTransferResponse>; verify(checkoutSessionID: string, otp: string, fail?: boolean): Promise<ArifpayTransferResponse>; } export default Awash;