mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-30 05:21:08 +01:00
23 lines
837 B
TypeScript
23 lines
837 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* 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' {
|
|
|
|
// @alexr00 https://github.com/microsoft/vscode/issues/246088
|
|
|
|
export interface CommentThread2 {
|
|
canReply: boolean | CommentAuthorInformation;
|
|
|
|
readonly uri: Uri;
|
|
range: Range | undefined;
|
|
comments: readonly Comment[];
|
|
collapsibleState: CommentThreadCollapsibleState;
|
|
contextValue?: string;
|
|
label?: string;
|
|
state?: CommentThreadState | { resolved?: CommentThreadState; applicability?: CommentThreadApplicability };
|
|
dispose(): void;
|
|
}
|
|
}
|