import { Widget } from '@theia/core/lib/browser'; import { TestResultViewContribution } from './view/test-result-view-contribution'; import { TestOutputViewContribution } from './view/test-output-view-contribution'; import { TestViewContribution } from './view/test-view-contribution'; import { TestPreferences } from '../common/test-preferences'; export interface TestExecutionProgressService { onTestRunRequested(preserveFocus: boolean): Promise; } export declare const TestExecutionProgressService: unique symbol; export declare class DefaultTestExecutionProgressService implements TestExecutionProgressService { protected readonly testResultView: TestResultViewContribution; protected readonly testOutputView: TestOutputViewContribution; protected readonly testView: TestViewContribution; protected readonly testPreferences: TestPreferences; onTestRunRequested(preserveFocus: boolean): Promise; openTestResultView(): Promise; } //# sourceMappingURL=test-execution-progress-service.d.ts.map