Remove unused type

This commit is contained in:
Matt Bierner 2020-03-22 15:44:07 -07:00
parent 9abd38f362
commit 414fc3c7cd
2 changed files with 0 additions and 8 deletions

View file

@ -1026,7 +1026,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
CallHierarchyItem: extHostTypes.CallHierarchyItem,
DebugConsoleMode: extHostTypes.DebugConsoleMode,
Decoration: extHostTypes.Decoration,
WebviewContentState: extHostTypes.WebviewContentState,
UIKind: UIKind,
ColorThemeKind: extHostTypes.ColorThemeKind,
TimelineItem: extHostTypes.TimelineItem,

View file

@ -2538,13 +2538,6 @@ export class Decoration {
bubble?: boolean;
}
export enum WebviewContentState {
Readonly = 1,
Unchanged = 2,
Dirty = 3,
}
//#region Theming
@es5ClassCompat