@gibme/finance
    Preparing search index...

    Interface AmortizationLoan

    interface AmortizationLoan {
        interest: number;
        interest_saved: number;
        months: number;
        months_saved: number;
        payment: number;
        total_amount: number;
        total_interest: number;
        total_principal: number;
        unadjusted_interest: number;
        unadjusted_total_amount: number;
        unadjusted_total_interest: number;
        [key: string]: number;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: number
    Index

    Properties

    interest: number

    The effective interest rate paid over the entire life of the loan

    interest_saved: number

    The amount of interest saved (if extra payments were supplied)

    months: number

    The number of months for the loan

    months_saved: number

    The number of months saved (if extra payments were supplied)

    payment: number

    The amount of the payment

    total_amount: number

    The total amount paid

    total_interest: number

    The total interest paid

    total_principal: number

    The total principal paid

    unadjusted_interest: number

    The effective interest rate paid over the entire life of the loan as if no extra payments were supplied

    unadjusted_total_amount: number

    The unadjusted total amount paid as if no extra payments were supplied

    unadjusted_total_interest: number

    The unadjusted total interest as if no extra payments were supplied