UNPKG

node-irr-es5

Version:

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

7 lines (6 loc) 276 B
import { RootFinderMethod, IRootFinder, RootFinderOptions } from '../definition'; export declare class RootFinderFactory { protected readonly options: RootFinderOptions; constructor(options: RootFinderOptions); make(method: RootFinderMethod): IRootFinder; }