10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import { IKeyValueObject } from 'qenv';
|
|
export interface IConfig {
|
|
baseImage: string;
|
|
command: string;
|
|
dockerSock: boolean;
|
|
exitCode?: number;
|
|
keyValueObjectArray: IKeyValueObject[];
|
|
}
|
|
export declare let run: () => Promise<IConfig>;
|