UNPKG

central-gateway

Version:

Simplify payments in Bangladesh with one unified library for AamarPay, SSLCommerz, and bKash. Skip the hassle of multiple gateway documentations—our consistent API does it all for you!

5 lines (4 loc) • 162 B
import { PaymentData } from '../types/interfaces'; export declare abstract class BaseGateway { abstract processPayment(data: PaymentData): Promise<string>; }