mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
chore - support blockOnResponse for inine chat API'ish command (#281491)
This commit is contained in:
@@ -550,6 +550,7 @@ const newCommands: ApiCommand[] = [
|
||||
attachments: v.attachments,
|
||||
autoSend: v.autoSend,
|
||||
position: v.position ? typeConverters.Position.from(v.position) : undefined,
|
||||
blockOnResponse: v.blockOnResponse
|
||||
};
|
||||
})],
|
||||
ApiCommandResult.Void
|
||||
@@ -563,6 +564,7 @@ type InlineChatEditorApiArg = {
|
||||
attachments?: vscode.Uri[];
|
||||
autoSend?: boolean;
|
||||
position?: vscode.Position;
|
||||
blockOnResponse?: boolean;
|
||||
};
|
||||
|
||||
type InlineChatRunOptions = {
|
||||
@@ -572,6 +574,7 @@ type InlineChatRunOptions = {
|
||||
attachments?: URI[];
|
||||
autoSend?: boolean;
|
||||
position?: IPosition;
|
||||
blockOnResponse?: boolean;
|
||||
};
|
||||
|
||||
//#endregion
|
||||
|
||||
Reference in New Issue
Block a user