From 30cbf40261ccfd88edffedc55f8122ec3da01c87 Mon Sep 17 00:00:00 2001 From: rebornix Date: Tue, 27 Oct 2020 09:49:24 -0700 Subject: [PATCH] move CommentThread.canReply to d.ts. --- src/vs/vscode.d.ts | 6 ++++++ src/vs/vscode.proposed.d.ts | 10 ---------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index f70f92be228..266bface3da 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -11697,6 +11697,12 @@ declare module 'vscode' { */ collapsibleState: CommentThreadCollapsibleState; + /** + * Whether the thread supports reply. + * Defaults to true. + */ + canReply: boolean; + /** * Context value of the comment thread. This can be used to contribute thread specific actions. * For example, a comment thread is given a context value as `editable`. When contributing actions to `comments/commentThread/title` diff --git a/src/vs/vscode.proposed.d.ts b/src/vs/vscode.proposed.d.ts index b2bc919e0fa..1911c769c3d 100644 --- a/src/vs/vscode.proposed.d.ts +++ b/src/vs/vscode.proposed.d.ts @@ -2159,16 +2159,6 @@ declare module 'vscode' { //#endregion - //#region https://github.com/microsoft/vscode/issues/102665 Comment API @rebornix - export interface CommentThread { - /** - * Whether the thread supports reply. - * Defaults to true. - */ - canReply: boolean; - } - //#endregion - //#region https://github.com/microsoft/vscode/issues/108929 FoldingRangeProvider.onDidChangeFoldingRanges @aeschli export interface FoldingRangeProvider2 extends FoldingRangeProvider {