mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 2b0b9136329c181a9e381463a1f7dc3a2d105a34 (#4880)
This commit is contained in:
@@ -460,6 +460,11 @@ export interface CompletionItem {
|
||||
* A command that should be run upon acceptance of this item.
|
||||
*/
|
||||
command?: Command;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export interface CompletionList {
|
||||
@@ -1265,19 +1270,19 @@ export interface CommentThread2 {
|
||||
resource: string | null;
|
||||
range: IRange;
|
||||
label: string;
|
||||
comments: Comment[];
|
||||
onDidChangeComments: Event<Comment[]>;
|
||||
comments: Comment[] | undefined;
|
||||
onDidChangeComments: Event<Comment[] | undefined>;
|
||||
collapsibleState?: CommentThreadCollapsibleState;
|
||||
input?: CommentInput;
|
||||
onDidChangeInput: Event<CommentInput | undefined>;
|
||||
acceptInputCommand?: Command;
|
||||
additionalCommands: Command[];
|
||||
additionalCommands?: Command[];
|
||||
deleteCommand?: Command;
|
||||
onDidChangeAcceptInputCommand: Event<Command>;
|
||||
onDidChangeAdditionalCommands: Event<Command[]>;
|
||||
onDidChangeAcceptInputCommand: Event<Command | undefined>;
|
||||
onDidChangeAdditionalCommands: Event<Command[] | undefined>;
|
||||
onDidChangeRange: Event<IRange>;
|
||||
onDidChangeLabel: Event<string>;
|
||||
onDidChangeCollasibleState: Event<CommentThreadCollapsibleState>;
|
||||
onDidChangeCollasibleState: Event<CommentThreadCollapsibleState | undefined>;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1299,7 +1304,7 @@ export interface CommentThread {
|
||||
threadId: string | null;
|
||||
resource: string | null;
|
||||
range: IRange;
|
||||
comments: Comment[];
|
||||
comments: Comment[] | undefined;
|
||||
collapsibleState?: CommentThreadCollapsibleState;
|
||||
reply?: Command;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user