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.
11 lines (10 loc) • 446 B
TypeScript
import { PersonAction } from './person-action';
import { SimpleDate } from '../simple-date';
import { PropertyPurchase } from "../property-purchase";
import { PersonSituation } from '../person-situation';
export declare class BuyPropertyAction implements PersonAction {
date: SimpleDate;
purchase: PropertyPurchase;
constructor(date: SimpleDate, purchase: PropertyPurchase);
execute(situation: PersonSituation): void;
}