CommandOutput

interface CommandOutput {
    errorMessage?: string;
    rawResult: string;
    success: boolean;
}

Properties

errorMessage?: string

CommandOutput

rawResult: string

CommandOutput

success: boolean

CommandOutput