UNPKG

node-irr

Version:

A Node.js package that provides an easy and customizable way to calculate internal rate of return.

9 lines (8 loc) 148 B
export type XirrInput = { amount: number; date: string | Date; }; export type InternalXirrInput = { amount: number; day: number; };