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) • 763 B
TypeScript
import { BuyPropertyAction } from './buy-property-action';
import { SignLoanAction } from './get-loan-action';
import { PersonAction } from './person-action';
import { SellPropertyAction } from './sell-property-action';
import { RentPropertyAction } from './rent-property-action';
import { LeaveRentalPropertyAction } from './leave-rental-property-action';
import { MoveInAction } from './move-in-action';
import { MakePropertyImprovementAction } from './make-property-improvement-action';
import { RentOutPropertyAction } from './rent-out-property-action';
export { PersonAction, BuyPropertyAction, SignLoanAction, SellPropertyAction, RentPropertyAction, LeaveRentalPropertyAction, MoveInAction, MakePropertyImprovementAction, RentOutPropertyAction };