10 lines
		
	
	
		
			296 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			296 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * defines possible prepare services
 | |
|  */
 | |
| export declare type TPrepService = 'npm' | 'docker' | 'docker-gitlab' | 'ssh';
 | |
| /**
 | |
|  * the main exported prepare function
 | |
|  * @param servieArg describes the service to prepare
 | |
|  */
 | |
| export declare let prepare: (serviceArg: TPrepService) => Promise<void>;
 |