afrimomo-sdk
Version:
A unified SDK for African payment providers
12 lines • 698 B
TypeScript
import type { HttpClient } from "../../../utils/httpClient";
import { type ServiceResult } from "../../../utils/serviceWrapper";
import type { PawaPayTypes } from "../types";
export declare class PawapayPayouts {
private readonly networkHandler;
private readonly baseEndpoint;
constructor(networkHandler: HttpClient);
sendPayout(transaction: PawaPayTypes.PayoutTransaction): Promise<ServiceResult<PawaPayTypes.PayoutTransaction>>;
sendBulkPayout(transactions: PawaPayTypes.PayoutTransaction[]): Promise<ServiceResult<PawaPayTypes.BulkPayoutResponse>>;
getPayout(payoutId: string): Promise<ServiceResult<PawaPayTypes.PayoutTransaction>>;
}
//# sourceMappingURL=index.d.ts.map