mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-24 03:00:39 +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;
|