cache/src/constants.ts
2019-11-12 17:01:15 -05:00

14 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"
}