UNPKG

patrimoniumjs

Version:

Patrimonium.js is a JavaScript library providing a set of tools to modelize the real estate operations of an individual and their impact on the financial situation of the same individual.

14 lines (13 loc) 260 B
/** * Represents a rental of a property. */ export interface Rental { /** * Amount to be paid each month to the landlord. */ price: number; /** * Annual amount of the residence tax. */ residenceTax: number; }