mirror of
https://github.com/actions/cache.git
synced 2025-06-22 01:25:21 +08:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
/**
|
|
* Options to control cache restore
|
|
*/
|
|
export interface RestoreOptions {
|
|
/**
|
|
* Weather to skip downloading the cache entry.
|
|
* If lookupOnly is set to true, the restore function will only check if
|
|
* a matching cache entry exists.
|
|
*/
|
|
lookupOnly?: boolean;
|
|
}
|