mirror of
				https://github.com/actions/cache.git
				synced 2025-10-30 10:38:41 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			324 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			324 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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";
 | |
| }
 | 
