1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2024-11-14 10:26:17 +01:00
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"
}