Fixes #28886: Layer breaker in vs/platform/statusbar/common/statusbar.ts

This commit is contained in:
Alex Dima
2017-06-19 10:47:40 +02:00
parent 6f3ef708df
commit 4e25d35572
10 changed files with 22 additions and 17 deletions

View File

@@ -45,6 +45,7 @@ import { IRange } from 'vs/editor/common/core/range';
import { ISelection, Selection } from 'vs/editor/common/core/selection';
import { ITreeItem } from 'vs/workbench/parts/views/common/views';
import { ThemeColor } from "vs/platform/theme/common/themeService";
export interface IEnvironment {
enableProposedApiForAll: boolean;
@@ -274,7 +275,7 @@ export abstract class MainThreadQuickOpenShape {
}
export abstract class MainThreadStatusBarShape {
$setEntry(id: number, extensionId: string, text: string, tooltip: string, command: string, color: string | editorCommon.ThemeColor, alignment: MainThreadStatusBarAlignment, priority: number): void { throw ni(); }
$setEntry(id: number, extensionId: string, text: string, tooltip: string, command: string, color: string | ThemeColor, alignment: MainThreadStatusBarAlignment, priority: number): void { throw ni(); }
$dispose(id: number) { throw ni(); }
}