11 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Dockerfile } from '../mod_docker/index';
 | |
| /**
 | |
|  * type of supported services
 | |
|  */
 | |
| export declare type TPubService = 'npm' | 'docker';
 | |
| /**
 | |
|  * the main exported publish function.
 | |
|  * @param pubServiceArg references targeted service to publish to
 | |
|  */
 | |
| export declare let publish: (argvArg: any) => Promise<void | Dockerfile[]>;
 |