UNPKG

pesapal-node-sdk

Version:

Node.js SDK for integrating with Pesapal payment gateway. Provides a simple interface for processing payments, checking status, and handling callbacks.

9 lines (8 loc) 183 B
export interface IPesapalConfig { consumerKey: string; consumerSecret: string; apiUrl: string; callbackUrl: string; ipnUrl: string; env: 'sandbox' | 'live'; }