Files
2025-05-15 13:32:55 +10:00

5 lines
118 B
TypeScript

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