mirror of
https://github.com/actions/cache.git
synced 2025-06-17 23:25:21 +08:00
16 lines
377 B
TypeScript
16 lines
377 B
TypeScript
/* eslint-disable @typescript-eslint/no-namespace */
|
|
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";
|
|
}
|