mirror of https://github.com/actions/cache.git
Fix lint on Windows (#89)
parent
fb50aa45ec
commit
4657a5f525
@ -1,15 +1,14 @@
|
|||||||
/* eslint-disable @typescript-eslint/no-namespace */
|
export enum Inputs {
|
||||||
export namespace Inputs {
|
Key = "key",
|
||||||
export const Key = "key";
|
Path = "path",
|
||||||
export const Path = "path";
|
RestoreKeys = "restore-keys"
|
||||||
export const RestoreKeys = "restore-keys";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export namespace Outputs {
|
export enum Outputs {
|
||||||
export const CacheHit = "cache-hit";
|
CacheHit = "cache-hit"
|
||||||
}
|
}
|
||||||
|
|
||||||
export namespace State {
|
export enum State {
|
||||||
export const CacheKey = "CACHE_KEY";
|
CacheKey = "CACHE_KEY",
|
||||||
export const CacheResult = "CACHE_RESULT";
|
CacheResult = "CACHE_RESULT"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue