Skip to content

Commit 7fd570d

Browse files
committed
yarn
1 parent c06df98 commit 7fd570d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/@types/vscode.proposed.commentsResolvedState.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ declare module 'vscode' {
77

88
// https://github.com/microsoft/vscode/issues/127473
99

10+
/**
11+
* The state of a comment thread.
12+
*/
1013
export enum CommentThreadState {
1114
Unresolved = 0,
1215
Resolved = 1
1316
}
1417

15-
// TODO@API doc
1618
export interface CommentThread {
19+
/**
20+
* The optional state of a comment thread, which may affect how the comment is displayed.
21+
*/
1722
state?: CommentThreadState;
1823
}
1924
}

0 commit comments

Comments
 (0)