UNPKG

@la-rebelion/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) 386 B
import { exec } from 'child_process'; export declare const execAsync: typeof exec.__promisify__; /** * Execute a shell command asynchronously without context of the current directory * @param command command to execute * @returns */ export declare function executeCommand(command: string): Promise<any>; export declare function log(message: string, ...optionalParams: any[]): void;