mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
23 lines
778 B
TypeScript
23 lines
778 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// https://github.com/microsoft/vscode/issues/206411
|
|
|
|
declare module 'vscode' {
|
|
|
|
export class TabInputTextMultiDiff {
|
|
|
|
readonly textDiffs: TabInputTextDiff[];
|
|
|
|
constructor(textDiffs: TabInputTextDiff[]);
|
|
}
|
|
|
|
export interface Tab {
|
|
|
|
readonly input: TabInputText | TabInputTextDiff | TabInputTextMultiDiff | TabInputCustom | TabInputWebview | TabInputNotebook | TabInputNotebookDiff | TabInputTerminal | unknown;
|
|
|
|
}
|
|
}
|