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.

12 lines (11 loc) 386 B
import { PersonInitialSituation } from "../.."; /** * Represents the initial situation of a `Frenchman`. */ export interface FrenchmanInitialSituation extends PersonInitialSituation { /** * The part count of the 'quotient familial' of the taxable household. * If not provided, the default value (= 1) is set. */ quotientFamilialPartCount?: number; }