1 | type CacheKey = 'eTag' | 'lastChecked' | 'latestVersion' | 'dependencies' | 'lastUsedIOSDeviceId';
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 | declare function getCacheRootPath(): string;
|
8 | declare function removeProjectCache(name: string): void;
|
9 | declare function get(name: string, key: CacheKey): string | undefined;
|
10 | declare function set(name: string, key: CacheKey, value: string): void;
|
11 | declare const _default: {
|
12 | get: typeof get;
|
13 | set: typeof set;
|
14 | removeProjectCache: typeof removeProjectCache;
|
15 | getCacheRootPath: typeof getCacheRootPath;
|
16 | };
|
17 | export default _default;
|
18 |
|
\ | No newline at end of file |