times.d.ts 93 B

123
  1. declare function times<T>(n: number, fn: (n: number) => T, ctx?: any): T[];
  2. export = times;