npmci/dist/npmci.build.d.ts

12 lines
298 B
TypeScript
Raw Normal View History

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