mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 18:50:10 +08:00
5 lines
118 B
TypeScript
5 lines
118 B
TypeScript
/**
|
|
* Cached fs operation wrapper.
|
|
*/
|
|
export declare function cachedLookup<T, R>(fn: (arg: T) => R): (arg: T) => R;
|