index.d.ts 116 B

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