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) 376 B
import { PersonAction } from './person-action'; import { SimpleDate } from '../simple-date'; import { PersonSituation } from '../person-situation'; export declare class SellPropertyAction implements PersonAction { date: SimpleDate; propertyIdx: number; constructor(date: SimpleDate, propertyIdx?: number); execute(situation: PersonSituation): void; }