@elsikora/setup-wizard
Version:
Setup Wizard - CLI scaffolding utility
14 lines • 478 B
TypeScript
/**
* 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>;
}
//# sourceMappingURL=command-service.interface.d.ts.map