IOweb/node_modules/astro/dist/cli/infra/tinyexec-command-executor.d.ts
2026-07-03 15:07:38 -05:00

6 lines
286 B
TypeScript

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