Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vscode-dts/vscode.proposed.activeComment.d.ts
3290 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
declare module 'vscode' {
7
// @alexr00 https://github.com/microsoft/vscode/issues/204484
8
9
export interface CommentController {
10
/**
11
* The currently active comment or `undefined`. The active comment is the one
12
* that currently has focus or, when none has focus, undefined.
13
*/
14
// readonly activeComment: Comment | undefined;
15
16
/**
17
* The currently active comment thread or `undefined`. The active comment thread is the one
18
* in the CommentController that most recently had focus or, when a different CommentController's
19
* thread has most recently had focus, undefined.
20
*/
21
readonly activeCommentThread: CommentThread | undefined;
22
}
23
}
24
25