Result type for shell operations. Returns errors as strings instead of Error objects to prevent stack trace exposure to renderer.
export interface ShellOperationResult { success: boolean; error?: string;} Copy
export interface ShellOperationResult { success: boolean; error?: string;}
Whether the operation succeeded.
Optional
Error message if operation failed.
Result type for shell operations. Returns errors as strings instead of Error objects to prevent stack trace exposure to renderer.
Source