@xec-sh/cli
Version:
Xec: The Universal Shell for TypeScript
12 lines (11 loc) • 479 B
TypeScript
interface DirectExecutionOptions {
verbose?: boolean;
quiet?: boolean;
cwd?: string;
timeout?: string;
env?: Record<string, string>;
}
export declare function executeDirectCommand(args: string[], options?: DirectExecutionOptions): Promise<void>;
export declare function isDirectCommand(args: string[], commandRegistry?: string[], taskNames?: string[]): boolean;
export declare function createTargetEngine(target: any, options?: any): Promise<any>;
export {};