util.d.ts 118 B

1234
  1. /**
  2. * Cached fs operation wrapper.
  3. */
  4. export declare function cachedLookup<T, R>(fn: (arg: T) => R): (arg: T) => R;