mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 14:31:31 +01:00
Add errorDetails to interactive session responses. (#176457)
* Add errorDetails to interactive session responses. Also avoid calling updateElementHeight during a renderElement * Fix hygiene
This commit is contained in:
@@ -76,9 +76,15 @@ declare module 'vscode' {
|
||||
followups?: string[];
|
||||
}
|
||||
|
||||
export interface InteractiveResponseErrorDetails {
|
||||
message: string;
|
||||
responseIsIncomplete?: boolean;
|
||||
}
|
||||
|
||||
export interface InteractiveResponseForProgress {
|
||||
followups?: string[];
|
||||
commands?: InteractiveResponseCommand[];
|
||||
errorDetails?: InteractiveResponseErrorDetails;
|
||||
}
|
||||
|
||||
export interface InteractiveProgress {
|
||||
|
||||
Reference in New Issue
Block a user