mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 01:25:39 -05:00
19 lines
858 B
TypeScript
19 lines
858 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
import { TPromise } from 'vs/base/common/winjs.base';
|
|
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
|
import { IssueReporterData } from 'vs/platform/issue/common/issue';
|
|
|
|
export const IWorkbenchIssueService = createDecorator<IWorkbenchIssueService>('workbenchIssueService');
|
|
|
|
export interface IWorkbenchIssueService {
|
|
_serviceBrand: any;
|
|
openReporter(dataOverrides?: Partial<IssueReporterData>): TPromise<void>;
|
|
openProcessExplorer(): TPromise<void>;
|
|
}
|