mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 18:22:34 -05:00
Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 (#7206)
* Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 * fix config changes * fix strictnull checks
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { createDecorator, ServiceIdentifier } from 'vs/platform/instantiation/common/instantiation';
|
||||
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
||||
import { CancellationToken, CancellationTokenSource } from 'vs/base/common/cancellation';
|
||||
import { toDisposable, DisposableStore, Disposable } from 'vs/base/common/lifecycle';
|
||||
import { IAction } from 'vs/base/common/actions';
|
||||
@@ -15,7 +15,7 @@ export const IProgressService = createDecorator<IProgressService>('progressServi
|
||||
*/
|
||||
export interface IProgressService {
|
||||
|
||||
_serviceBrand: ServiceIdentifier<IProgressService>;
|
||||
_serviceBrand: undefined;
|
||||
|
||||
withProgress<R = any>(options: IProgressOptions | IProgressNotificationOptions | IProgressCompositeOptions, task: (progress: IProgress<IProgressStep>) => Promise<R>, onDidCancel?: () => void): Promise<R>;
|
||||
}
|
||||
@@ -174,5 +174,5 @@ export const IEditorProgressService = createDecorator<IEditorProgressService>('e
|
||||
*/
|
||||
export interface IEditorProgressService extends IProgressIndicator {
|
||||
|
||||
_serviceBrand: ServiceIdentifier<IEditorProgressService>;
|
||||
_serviceBrand: undefined;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user