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) 287 B
import { HttpClient } from './HttpClient'; import { IPesapalConfig } from '../interfaces/IPesapalConfig.interface'; export declare class AuthService { private http; private config; constructor(http: HttpClient, config: IPesapalConfig); authenticate(): Promise<string>; }