mirror of
https://github.com/actions/cache.git
synced 2026-01-11 05:30:33 +11:00
11 lines
289 B
TypeScript
11 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;
|
|
}
|