@necto-ai/pgit
Version:
Private file tracking with dual git repositories
18 lines • 472 B
TypeScript
/**
* Command execution result
*/
export interface CommandResult {
/** Exit code of the command */
exitCode: number;
/** Standard output */
stdout: string;
/** Standard error output */
stderr: string;
/** Command that was executed */
command: string;
}
/**
* Execute a shell command and return the result
*/
export declare function run_in_terminal(command: string): Promise<CommandResult>;
//# sourceMappingURL=command.executor.d.ts.map