File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 3232 " tokenInformation" ,
3333 " treeViewMarkdownMessage"
3434 ],
35- "version" : " 0.88 .0" ,
35+ "version" : " 0.90 .0" ,
3636 "publisher" : " GitHub" ,
3737 "engines" : {
38- "vscode" : " ^1.89 .0"
38+ "vscode" : " ^1.90 .0"
3939 },
4040 "categories" : [
4141 " Other"
Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ declare module 'vscode' {
6868 * Once disposed, this comment thread will be removed from visible editors and Comment Panel when appropriate.
6969 */
7070 dispose ( ) : void ;
71+
72+ // Part of the comment reveal proposal
73+ reveal ( options ?: CommentThreadRevealOptions ) : Thenable < void > ;
7174 }
7275
7376 export interface CommentController {
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ describe('ReviewCommentController', function () {
160160 label : 'Start discussion' ,
161161 state : { resolved : vscode . CommentThreadState . Unresolved , applicability : 0 } ,
162162 canReply : false ,
163+ reveal : ( ) => Promise . resolve ( ) ,
163164 dispose : ( ) => { } ,
164165 } ;
165166 }
You can’t perform that action at this time.
0 commit comments