UNPKG

@fenil265/fundly-payment-sdk

Version:

Fundly Payment SDK for seamless integration with Fundly Pay systems.

18 lines 412 B
/** * Loan API Service * Loan and credit-related API calls */ export interface GetEMIPayload { loanAmount: number; businessId: string; openedOnDate: string; productType: string; tenureMagnitude: number; tenureUnit: string; fiCode: string; } /** * Get EMI calculation */ export declare const getEMI: (payload: GetEMIPayload) => Promise<any>; //# sourceMappingURL=loan.api.d.ts.map