mirror of
				https://gitea.com/actions/setup-node.git
				synced 2025-10-29 07:47:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export interface NodeInputs {
 | |
|   versionSpec: string;
 | |
|   arch: string;
 | |
|   auth?: string;
 | |
|   checkLatest: boolean;
 | |
|   stable: boolean;
 | |
| }
 | |
| 
 | |
| export interface INodeVersionInfo {
 | |
|   downloadUrl: string;
 | |
|   resolvedVersion: string;
 | |
|   arch: string;
 | |
|   fileName: string;
 | |
| }
 | |
| 
 | |
| export interface INodeVersion {
 | |
|   version: string;
 | |
|   files: string[];
 | |
| }
 | 
