complete modular transition

This commit is contained in:
2017-05-19 12:09:33 +02:00
parent cf41e81153
commit 7c5cafeb1b
38 changed files with 234 additions and 153 deletions

View File

@@ -1,3 +1,4 @@
import { Dockerfile } from '../mod_docker/index';
/**
* type of supported services
*/
@@ -6,4 +7,4 @@ export declare type TPubService = 'npm' | 'docker';
* the main exported publish function.
* @param pubServiceArg references targeted service to publish to
*/
export declare let publish: (pubServiceArg?: TPubService) => Promise<any>;
export declare let publish: (pubServiceArg?: TPubService) => Promise<void | Dockerfile[]>;