cerevox
Version:
TypeScript SDK for browser automation and secure command execution in highly available and scalable micro computer environments
23 lines • 456 B
TypeScript
/**
* Command execution result.
*/
export interface CommandResult {
/**
* Command execution exit code.
* `0` if the command finished successfully.
*/
exitCode: number;
/**
* Error message from command execution if it failed.
*/
error?: string;
/**
* Command stdout output.
*/
stdout: string;
/**
* Command stderr output.
*/
stderr: string;
}
//# sourceMappingURL=types.d.ts.map