5 lines
118 B
TypeScript
Raw Normal View History

2023-02-22 17:47:24 -08:00
/**
* Cached fs operation wrapper.
*/
export declare function cachedLookup<T, R>(fn: (arg: T) => R): (arg: T) => R;