mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-17 15:24:40 +01:00
26 lines
841 B
TypeScript
26 lines
841 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/153213
|
|
|
|
declare module 'vscode' {
|
|
|
|
export class TabInputTextMerge {
|
|
|
|
readonly base: Uri;
|
|
readonly input1: Uri;
|
|
readonly input2: Uri;
|
|
readonly result: Uri;
|
|
|
|
constructor(base: Uri, input1: Uri, input2: Uri, result: Uri);
|
|
}
|
|
|
|
export interface Tab {
|
|
|
|
readonly input: TabInputText | TabInputTextDiff | TabInputTextMerge | TabInputCustom | TabInputWebview | TabInputNotebook | TabInputNotebookDiff | TabInputTerminal | unknown;
|
|
|
|
}
|
|
}
|