Path: blob/main/src/vscode-dts/vscode.proposed.activeComment.d.ts
3290 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45declare module 'vscode' {6// @alexr00 https://github.com/microsoft/vscode/issues/20448478export interface CommentController {9/**10* The currently active comment or `undefined`. The active comment is the one11* that currently has focus or, when none has focus, undefined.12*/13// readonly activeComment: Comment | undefined;1415/**16* The currently active comment thread or `undefined`. The active comment thread is the one17* in the CommentController that most recently had focus or, when a different CommentController's18* thread has most recently had focus, undefined.19*/20readonly activeCommentThread: CommentThread | undefined;21}22}232425