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.

10 lines (9 loc) 248 B
/** * Represents the act of renting out a property. */ export interface PropertyRentOut { /** * The index of a `Person` property to rent out. If not provided the first property is rented out. */ propertyIdx?: number; }