mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-31 09:10:30 -04:00
* Merge from vscode 1ce89e2cb720d69c496c2815c4696ee4fd4429a6 * redisable accounts because of issues
16 lines
785 B
TypeScript
16 lines
785 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
|
import { IssueReporterData } from 'vs/platform/issue/node/issue';
|
|
|
|
export const IWorkbenchIssueService = createDecorator<IWorkbenchIssueService>('workbenchIssueService');
|
|
|
|
export interface IWorkbenchIssueService {
|
|
_serviceBrand: any;
|
|
openReporter(dataOverrides?: Partial<IssueReporterData>): Promise<void>;
|
|
openProcessExplorer(): Promise<void>;
|
|
}
|