2016-08-02 14:20:32 +00:00
|
|
|
/// <reference types="q" />
|
2016-06-01 03:44:48 +00:00
|
|
|
import "typings-global";
|
2016-08-02 14:20:32 +00:00
|
|
|
import * as plugins from "./npmci.plugins";
|
2016-09-04 14:05:47 +00:00
|
|
|
/**
|
|
|
|
* 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) => plugins.q.Promise<{}>;
|