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

vscode.proposed.snippetWorkspaceEdit.d.ts « vscode-dts « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43305c7b56e7174d6cd2098ce69d7bdc52816752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

declare module 'vscode' {

	// https://github.com/microsoft/vscode/issues/145374

	export interface TextEdit {

		// will be merged with newText
		// will NOT be supported everywhere, only: `workspace.applyEdit`
		newText2?: string | SnippetString;
	}
}