Interface ResultsObject

interface ResultsObject {
    payments: PaymentPlanObject[];
    totalInterestPaid: number;
    totalPayments: number;
}

Implemented by

Properties

payments: PaymentPlanObject[]
totalInterestPaid: number
totalPayments: number