index.d.ts 86 B

12345
  1. declare interface Fn<T = any, R = T> {
  2. (...arg: T[]): R;
  3. }
  4. declare module 'lodash';