UNPKG

cbe-utils

Version:

A TypeScript utility library for CBE (Commercial Bank of Ethiopia) payment verification and transaction processing

13 lines 392 B
export interface TransactionDetails { transactionRefNumber: string | null; paymentDateTime: Date | null; totalAmountDebited: string | null; receiver: string | null; payer: string | null; } export interface PaymentVerificationConfig { cbeAccountNumber: string; maxTransactionAgeHours?: number; rejectUnauthorized?: boolean; } //# sourceMappingURL=types.d.ts.map