uz-pay-sdk
Version:
🚀 Universal Payment SDK for Uzbekistan - Integrate Payme, Click, UzCard, Humo & Apelsin with one simple API. Battle-tested, production-ready, 95% faster integration.
11 lines (10 loc) • 438 B
TypeScript
import { PaymentDriver } from '../interfaces/payment-driver.interface';
import { PaymentConfigService } from '../../config/payment-config.service';
export declare class ClickDriver implements PaymentDriver {
private readonly configService;
private config;
constructor(configService: PaymentConfigService);
private generateSignature;
createPayment(data: any): Promise<any>;
checkPayment(data: any): Promise<any>;
}