Files
talk-pro/node_modules/astro/dist/cli/infra/tinyexec-command-executor.d.ts

7 lines
286 B
TypeScript
Raw Normal View History

import type { CommandExecutor, CommandExecutorOptions } from '../definitions.js';
export declare class TinyexecCommandExecutor implements CommandExecutor {
execute(command: string, args?: Array<string>, options?: CommandExecutorOptions): Promise<{
stdout: string;
}>;
}