Tie in tab input, remove cleanup .d.ts

This commit is contained in:
Logan Ramos
2022-03-17 16:54:35 -04:00
parent fc0bac73a1
commit 85c3df0dde
9 changed files with 96 additions and 171 deletions

View File

@@ -670,24 +670,15 @@ export interface IEditorTabGroupDto {
groupId: number;
}
export enum TabKind {
Singular = 0,
Diff = 1,
SidebySide = 2
}
export interface IEditorTabDto {
id: string;
viewColumn: EditorGroupColumn;
label: string;
input: AnyInputDto;
resource?: UriComponents;
editorId?: string;
isActive: boolean;
isPinned: boolean;
isDirty: boolean;
kind: TabKind;
additionalResourcesAndViewTypes: { resource?: UriComponents; viewId?: string }[];
}
export interface IExtHostEditorTabsShape {