@nu-art/commando
Version:
15 lines (14 loc) • 525 B
TypeScript
import { CustomException } from '@nu-art/ts-common';
import { ExecException } from 'child_process';
export declare class CliError extends CustomException {
stdout: string;
stderr: string;
cause: ExecException;
constructor(message: string, stdout: string, stderr: string, cause: ExecException);
}
export declare class CommandoException extends CustomException {
stdout: string;
stderr: string;
exitCode: number;
constructor(message: string, stdout: string, stderr: string, exitCode: number);
}