now fully async

This commit is contained in:
2017-03-11 01:10:37 +01:00
parent bbc2e9002a
commit d1e060e1dc
39 changed files with 612 additions and 466 deletions

View File

@@ -1,5 +1,3 @@
/// <reference types="q" />
import * as plugins from './npmci.plugins';
/**
* defines possible prepare services
*/
@@ -8,4 +6,4 @@ 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) => plugins.q.Promise<{}>;
export declare let prepare: (serviceArg: TPrepService) => Promise<void>;