2016-08-02 16:20:32 +02:00
|
|
|
/// <reference types="q" />
|
2016-06-02 17:57:01 +02:00
|
|
|
import "typings-global";
|
2016-08-02 16:20:32 +02:00
|
|
|
import * as plugins from "./npmci.plugins";
|
2016-09-04 16:05:47 +02:00
|
|
|
/**
|
|
|
|
* defines possible build services
|
|
|
|
*/
|
|
|
|
export declare type TBuildService = "docker";
|
|
|
|
/**
|
|
|
|
* builds for a specific service
|
|
|
|
*/
|
2016-09-04 17:56:56 +02:00
|
|
|
export declare let build: (commandArg: any) => plugins.q.Promise<any>;
|