2019-11-13 05:48:02 +08:00
|
|
|
/* eslint-disable @typescript-eslint/no-namespace */
|
2019-10-31 02:48:49 +08:00
|
|
|
export namespace Inputs {
|
|
|
|
export const Key = "key";
|
|
|
|
export const Path = "path";
|
|
|
|
export const RestoreKeys = "restore-keys";
|
|
|
|
}
|
|
|
|
|
|
|
|
export namespace Outputs {
|
|
|
|
export const CacheHit = "cache-hit";
|
|
|
|
}
|
|
|
|
|
|
|
|
export namespace State {
|
|
|
|
export const CacheKey = "CACHE_KEY";
|
|
|
|
export const CacheResult = "CACHE_RESULT";
|
|
|
|
}
|