tiny tweak and API-todo

This commit is contained in:
Johannes 2022-03-15 09:15:07 +01:00
parent 79d9bb8754
commit 9fbc861fa4
No known key found for this signature in database
GPG key ID: 6DEF802A22264FCA

View file

@ -78,12 +78,14 @@ declare module 'vscode' {
* @param index The index to move the tab to
* @param viewColumn The column to move the tab into
*/
// TODO@API move into TabGroups
move(index: number, viewColumn: ViewColumn): Thenable<void>;
/**
* Closes the tab. This makes the tab object invalid and the tab
* should no longer be used for further actions.
*/
// TODO@API move into TabGroups
close(): Thenable<void>;
}
@ -94,7 +96,7 @@ declare module 'vscode' {
export const tabGroups: TabGroups;
}
interface TabGroups {
export interface TabGroups {
/**
* All the groups within the group container
*/
@ -117,7 +119,7 @@ declare module 'vscode' {
onDidChangeActiveTabGroup: Event<TabGroup | undefined>;
}
interface TabGroup {
export interface TabGroup {
/**
* Whether or not the group is currently active
*/