import { createServiceIdentifier } from '../../../util/common/services';
export const IRunCommandExecutionService = createServiceIdentifier<IRunCommandExecutionService>('IRunCommandExecutionService');
export interface IRunCommandExecutionService {
readonly _serviceBrand: undefined;
executeCommand(command: string, ...args: any[]): Promise<any>;
}