mirror of
https://github.com/actions/cache.git
synced 2024-11-14 18:08:06 +00:00
15 lines
228 B
TypeScript
15 lines
228 B
TypeScript
export enum Inputs {
|
|
Key = "key",
|
|
Path = "path",
|
|
RestoreKeys = "restore-keys"
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = "cache-hit"
|
|
}
|
|
|
|
export enum State {
|
|
CacheKey = "CACHE_KEY",
|
|
CacheResult = "CACHE_RESULT"
|
|
}
|