UNPKG

@k1ssh/qbot

Version:

QBot SDK is a set of APIs for creating and managing microservices, and Kubernetes deployments. This is the core package for QBot AI.

10 lines (9 loc) 259 B
/** * A class to execute commands in a given directory. */ export declare class CommandExecutor { private cwd; constructor(initialDir: string); execute(command: string): Promise<string>; executeSequence(commands: string[]): Promise<void>; }