move CommentThread.canReply to d.ts.

This commit is contained in:
rebornix
2020-10-27 09:49:24 -07:00
parent e94148b917
commit 30cbf40261
2 changed files with 6 additions and 10 deletions
+6
View File
@@ -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`
-10
View File
@@ -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 {