ogenzo-widgets
Version:
Ogenzo Payment Node js Module
31 lines (30 loc) • 781 B
TypeScript
import { OgenzoPayment } from './payments';
import { OgenzoSMS } from './sms';
import { OgenzoMail } from './email';
export declare class OgenzoWidgets {
email?: string;
password?: string;
airtelWallet?: string;
mtnWallet?: string;
payments?: OgenzoPayment;
username?: string;
smsApiKey?: string;
sms?: OgenzoSMS;
emailApiKey?: string;
mail?: OgenzoMail;
constructor(widgetsConfig: {
paymentConfig?: {
email: string;
password: string;
airtelWallet: string;
mtnWallet: string;
};
smsConfig?: {
username: string;
apiKey: string;
};
emailConfig?: {
apiKey: string;
};
});
}