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