UNPKG

@visulima/find-cache-dir

Version:

Finds the common standard cache directory

9 lines (8 loc) 300 B
type Options = { create?: boolean; cwd?: URL | string; throwError?: boolean; }; export declare const findCacheDir: (name: string, options?: Options) => Promise<string | undefined>; export declare const findCacheDirSync: (name: string, options?: Options) => string | undefined; export {};