UNPKG

node-irr

Version:

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

7 lines (6 loc) 228 B
import { RootFinderOptions } from '../../root-finder'; import { XirrInput } from '../definition'; export declare function xirr(inputs: XirrInput[], options?: Partial<RootFinderOptions>): { days: number; rate: number; };