cashbill
Version:
A TypeScript library for making payments through CashBill gateway.
11 lines (10 loc) • 357 B
TypeScript
import { Config, ConfigGetter } from './config';
import { PaymentModule } from './features/payment';
import { NotificationModule } from './features/notification';
export declare class CashBill {
private config;
payments: PaymentModule;
notifications: NotificationModule;
constructor(config: Config);
protected getConfig: ConfigGetter;
}