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.

12 lines (11 loc) 465 B
import { PersonAction } from './person-action'; import { SimpleDate } from '../simple-date'; import { PersonSituation } from '../person-situation'; export declare class MakePropertyImprovementAction implements PersonAction { date: SimpleDate; private cost; private addedValue; private propertyIdx; constructor(date: SimpleDate, cost: number, addedValue: number, propertyIdx?: number); execute(situation: PersonSituation): void; }