mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Implements a starting tab reading API (#131998)
* Clean up proposed.d.ts * More API Polish * Allow resource to be undefined * Fix hygiene * Address feedback * Remove unnecessary iteration * Use index from map
This commit is contained in:
@@ -46,7 +46,7 @@ import { WorkspaceTrustRequestOptions } from 'vs/platform/workspace/common/works
|
||||
import { ExtensionActivationReason } from 'vs/workbench/api/common/extHostExtensionActivator';
|
||||
import { ExtHostInteractive } from 'vs/workbench/api/common/extHostInteractive';
|
||||
import { TunnelDto } from 'vs/workbench/api/common/extHostTunnelService';
|
||||
import { DebugConfigurationProviderTriggerKind } from 'vs/workbench/api/common/extHostTypes';
|
||||
import { DebugConfigurationProviderTriggerKind, ViewColumn } from 'vs/workbench/api/common/extHostTypes';
|
||||
import * as tasks from 'vs/workbench/api/common/shared/tasks';
|
||||
import { TreeDataTransferDTO } from 'vs/workbench/api/common/shared/treeDataTransfer';
|
||||
import { SaveReason } from 'vs/workbench/common/editor';
|
||||
@@ -640,9 +640,9 @@ export interface MainThreadEditorTabsShape extends IDisposable {
|
||||
}
|
||||
|
||||
export interface IEditorTabDto {
|
||||
group: number;
|
||||
name: string;
|
||||
resource: UriComponents;
|
||||
viewColumn: ViewColumn;
|
||||
label: string;
|
||||
resource?: UriComponents;
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user