UNPKG

@elsikora/setup-wizard

Version:

Setup Wizard - CLI scaffolding utility

14 lines (13 loc) 423 B
/** * Interface for executing commands. * Provides a method for executing shell commands. */ export interface ICommandService { /** * Executes a shell command. * @param command - The shell command to execute * @returns Promise that resolves when the command completes successfully * @throws May throw an error if the command execution fails */ execute(command: string): Promise<void>; }