UNPKG

afrimomo-sdk

Version:

A unified SDK for African payment providers

15 lines 659 B
export interface ServiceError { errorMessage: string; statusCode: number; errorObject: string; } export type PawaPayNetworkResponse = ServiceError; export interface NetworkResponse { HasError: boolean; ErrorMessage: string; ErrorCode?: string | number; Data?: unknown; } export type MoMoCurrency = "GHS" | "KES" | "UGX" | "TZS" | "ZMW" | "XAF" | "XOF" | "RWF" | "MWK" | "USD"; export type Correspondent = "MTN_MOMO_GHA" | "VODAFONE_GHA" | "AIRTEL_TIGO_GHA" | "MTN_MOMO_UGA" | "AIRTEL_UGA" | "MTN_MOMO_ZMB" | "AIRTEL_ZMB" | "ZAMTEL_ZMB" | "MTN_MOMO_RWA" | "AIRTEL_RWA" | "TNM_MWI" | "AIRTEL_MWI"; //# sourceMappingURL=index.d.ts.map