geezsms
Version:
GeezSMS Typscript wrapper.
10 lines (9 loc) • 467 B
TypeScript
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;