@gibme/finance
    Preparing search index...

    Interface AmortizationTablePaymentEntry

    interface AmortizationTablePaymentEntry {
        balance: number;
        extra_principal: number;
        interest: number;
        interest_paid: number;
        month: number;
        payment: number;
        principal: number;
        principal_paid: number;
        total_paid: number;
        [key: string]: number;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: number
    Index

    Properties

    balance: number

    The new balance after the payment has been made

    extra_principal: number

    The amount of extra principal applied this payment cycle

    interest: number

    The amount of interest included in the payment amount

    interest_paid: number

    The total interest paid at this point in the loan

    month: number

    The month number of the payment

    payment: number

    The payment amount

    principal: number

    The amount of principal included in the payment amount

    principal_paid: number

    The total principal paid at this point in the loan

    total_paid: number

    The total amount paid at this point in the loan