Files
dealplustech/dealplustech-astro/node_modules/astro/dist/cli/infra/tinyexec-command-executor.d.ts
2026-03-02 12:35:14 +07: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;
}>;
}