UNPKG

react-financial-charts

Version:
15 lines (14 loc) 399 B
export interface ChangeOptions { readonly sourcePath: string; readonly basePath: string; readonly mainKeys: string[]; readonly compareKeys: string[]; } interface ChangeCalculator { (data: any[]): any; undefinedLength(): number; options(): ChangeOptions; options(newOptions: ChangeOptions): ChangeCalculator; } export default function (): ChangeCalculator; export {};