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) 251 B
/** * Represents the act of moving in a property. */ export interface PropertyMove { /** * The index of a `Person` property to move in. If not provided, the `Person` moves in his first property. */ propertyIdx?: number; }