Files
talk-pro/node_modules/astro/dist/cli/infra/tinyexec-command-executor.d.ts
2026-05-12 16:16:03 +08:00

7 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;
}>;
}