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

vscode.proposed.commentsResolvedState.d.ts « vscode-dts « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95fb288dd2407df736033d6a20bf4606c26d2036 (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
/*---------------------------------------------------------------------------------------------
 *  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/127473

	/**
	 * The state of a comment thread.
	 */
	export enum CommentThreadState {
		Unresolved = 0,
		Resolved = 1
	}

	export interface CommentThread {
		/**
		 * The optional state of a comment thread, which may affect how the comment is displayed.
		 */
		state?: CommentThreadState;
	}
}