Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vscode.proposed.tabInputTextMerge.d.ts « vscode-dts « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da95fd1d35bc6fa99aaaa152cb3ac8fd08c1b976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*---------------------------------------------------------------------------------------------
 *  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;

	}
}