npmci/dist/npmci.build.d.ts
2016-11-24 23:21:40 +01:00

12 lines
298 B
TypeScript

/// <reference types="q" />
import 'typings-global';
import * as plugins from './npmci.plugins';
/**
* defines possible build services
*/
export declare type TBuildService = 'docker';
/**
* builds for a specific service
*/
export declare let build: (commandArg: any) => plugins.q.Promise<any>;