2017-05-19 10:09:33 +00:00
|
|
|
import { Dockerfile } from '../mod_docker/index';
|
2016-09-04 11:42:22 +00:00
|
|
|
/**
|
|
|
|
* type of supported services
|
|
|
|
*/
|
2016-11-24 22:21:40 +00:00
|
|
|
export declare type TPubService = 'npm' | 'docker';
|
2016-09-04 11:42:22 +00:00
|
|
|
/**
|
|
|
|
* the main exported publish function.
|
2016-09-04 14:05:47 +00:00
|
|
|
* @param pubServiceArg references targeted service to publish to
|
2016-09-04 11:42:22 +00:00
|
|
|
*/
|
2017-07-27 12:20:56 +00:00
|
|
|
export declare let publish: (argvArg: any) => Promise<void | Dockerfile[]>;
|