Files

5 lines
118 B
TypeScript
Raw Permalink Normal View History

2026-05-31 18:45:31 +08:00
/**
* Cached fs operation wrapper.
*/
export declare function cachedLookup<T, R>(fn: (arg: T) => R): (arg: T) => R;