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.

17 lines (16 loc) 1.12 kB
import { SimpleDateOptions, SimpleDate } from './simple-date'; import { Person } from './person'; import { PropertyPurchase } from './property-purchase'; import { Property } from './property'; import { Loan, LoanOptions } from './loan'; import { EnvironmentOptions } from './environment-options'; import { Rental } from './rental'; import { PersonInitialSituation } from './person-initial-situation'; import { PropertyImprovement } from './property-improvement'; import { PropertySale } from './property-sale'; import { PropertyMove } from './property-move'; import { PropertyRentOut } from './property-rent-out'; import { Employment, GrossSalary } from './employment'; import { BalanceSheet, PLStatement, Reporting, History } from './reporting'; import { PersonSituation } from './person-situation'; export { Person, PersonInitialSituation, PersonSituation, EnvironmentOptions, Loan, LoanOptions, Property, Rental, SimpleDate, SimpleDateOptions, PropertyPurchase, BalanceSheet, PLStatement, Reporting, History, PropertyImprovement, PropertySale, PropertyMove, PropertyRentOut, Employment, GrossSalary };