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.

15 lines (14 loc) 373 B
import { BalanceSheet, PLStatement } from '..'; /** * Represents a monthly financial reporting of a `Person`. */ export interface Reporting { /** * The balance sheet of the `Person`. */ balanceSheet: BalanceSheet; /** * The month-over-month profit and loss (P&L) statement of the `Person.` */ plStatement: PLStatement; }