This commit is contained in:
Logan Ramos
2022-03-28 14:36:35 -04:00
parent fd7f35aa4c
commit 64f37bc300
5 changed files with 13 additions and 7 deletions

View File

@@ -668,7 +668,7 @@ export type AnyInputDto = UnknownInputDto | TextInputDto | TextDiffInputDto | No
export interface MainThreadEditorTabsShape extends IDisposable {
// manage tabs: move, close, rearrange etc
$moveTab(tabId: string, index: number, viewColumn: EditorGroupColumn, preserveFocus?: boolean): void;
$closeTab(tabIds: string[], preserveFocus?: boolean): Promise<void>;
$closeTab(tabIds: string[], preserveFocus?: boolean): Promise<boolean>;
}
export interface IEditorTabGroupDto {