index.d.ts 60 B

123
  1. declare interface Fn<T = any, R = T> {
  2. (...arg: T[]): R;
  3. }