@nx/plugin
Version:
17 lines (16 loc) • 379 B
TypeScript
/**
* Run a nx command inside the e2e directory
* @param command
* @param opts
*
* @see tmpProjPath
*/
export declare function runNxCommand(command?: string, opts?: {
silenceError?: boolean;
env?: NodeJS.ProcessEnv;
cwd?: string;
}): string;
export declare function runCommand(command: string, opts: {
env?: NodeJS.ProcessEnv;
cwd?: string;
}): string;