Add side by side editor to tab api proposal

This commit is contained in:
Logan Ramos
2021-09-02 15:17:51 -04:00
parent 8f7396616f
commit fe53ae0c9f
5 changed files with 43 additions and 9 deletions

View File

@@ -642,7 +642,8 @@ export interface MainThreadEditorTabsShape extends IDisposable {
export interface IEditorTabDto {
viewColumn: ViewColumn;
label: string;
resource?: UriComponents;
resource?: UriComponents | { primary?: UriComponents, secondary?: UriComponents };
editorId?: string;
isActive: boolean;
}