2016-07-18 22:37:13 +00:00
|
|
|
/// <reference types="q" />
|
|
|
|
import * as plugins from "./npmdocker.plugins";
|
2016-07-19 17:21:06 +00:00
|
|
|
export interface IConfig {
|
|
|
|
baseImage: string;
|
|
|
|
command: string;
|
2016-07-28 16:01:02 +00:00
|
|
|
dockerSock: boolean;
|
2016-07-19 17:21:06 +00:00
|
|
|
exitCode?: number;
|
|
|
|
}
|
2016-07-18 22:37:13 +00:00
|
|
|
export declare let run: () => plugins.q.Promise<{}>;
|