Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/@react-native-community/cli-tools/build/cacheManager.d.ts
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

18 lines
697 B
TypeScript

type CacheKey = 'eTag' | 'lastChecked' | 'latestVersion' | 'dependencies' | 'lastUsedIOSDeviceId';
/**
* Returns the path string of `$HOME/.react-native-cli`.
*
* In case it doesn't exist, it will be created.
*/
declare function getCacheRootPath(): string;
declare function removeProjectCache(name: string): void;
declare function get(name: string, key: CacheKey): string | undefined;
declare function set(name: string, key: CacheKey, value: string): void;
declare const _default: {
get: typeof get;
set: typeof set;
removeProjectCache: typeof removeProjectCache;
getCacheRootPath: typeof getCacheRootPath;
};
export default _default;
//# sourceMappingURL=cacheManager.d.ts.map