UNPKG

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.

37 lines (36 loc) • 855 B
import { ConfigService } from '@nestjs/config'; export declare class PaymentConfigService { private configService; constructor(configService: ConfigService); get paymeConfig(): { merchantId: string; key: string; apiUrl: string; }; get clickConfig(): { serviceId: string; merchantId: string; secretKey: string; apiUrl: string; }; get uzcardConfig(): { terminalId: string; terminalUserId: string; serviceId: string; apiUrl: string; }; get humoConfig(): { merchantId: string; secretKey: string; apiUrl: string; }; get apelsinConfig(): { terminalKey: string; password: string; apiUrl: string; }; get appConfig(): { port: number; nodeEnv: string; }; }