5 lines
118 B
TypeScript
Raw Normal View History

2023-08-13 16:48:04 +03:00
/**
* Cached fs operation wrapper.
*/
export declare function cachedLookup<T, R>(fn: (arg: T) => R): (arg: T) => R;