mirror of
				https://github.com/actions/cache.git
				synced 2025-10-23 08:56:26 +08:00 
			
		
		
		
	Fix lint on Windows (#89)
This commit is contained in:
		@@ -1,15 +1,14 @@
 | 
			
		||||
/* eslint-disable @typescript-eslint/no-namespace */
 | 
			
		||||
export namespace Inputs {
 | 
			
		||||
    export const Key = "key";
 | 
			
		||||
    export const Path = "path";
 | 
			
		||||
    export const RestoreKeys = "restore-keys";
 | 
			
		||||
export enum Inputs {
 | 
			
		||||
    Key = "key",
 | 
			
		||||
    Path = "path",
 | 
			
		||||
    RestoreKeys = "restore-keys"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export namespace Outputs {
 | 
			
		||||
    export const CacheHit = "cache-hit";
 | 
			
		||||
export enum Outputs {
 | 
			
		||||
    CacheHit = "cache-hit"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export namespace State {
 | 
			
		||||
    export const CacheKey = "CACHE_KEY";
 | 
			
		||||
    export const CacheResult = "CACHE_RESULT";
 | 
			
		||||
export enum State {
 | 
			
		||||
    CacheKey = "CACHE_KEY",
 | 
			
		||||
    CacheResult = "CACHE_RESULT"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user