10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
/// <reference types="q" />
|
|
import * as plugins from "./npmdocker.plugins";
|
|
export interface IConfig {
|
|
baseImage: string;
|
|
command: string;
|
|
dockerSock: boolean;
|
|
exitCode?: number;
|
|
}
|
|
export declare let run: () => plugins.q.Promise<{}>;
|