UNPKG

solid-credit

Version:

Solid Credit is an advanced tool designed for the precise generation of loan amortization tables. This library encompasses a variety of loan structures, including the French, German, and American systems, in addition to offering options for grace periods.

8 lines (7 loc) 226 B
export interface ICredit { plazo: number; interes: number; prestamo: number; GetMonthlyInterest(interes: number, plazo: number): number; GetPayment(plazo: number, interes: number, prestamo: number): number; }