mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
Display terminal tool results for bg sessions (#289845)
This commit is contained in:
@@ -118,6 +118,24 @@ declare module 'vscode' {
|
||||
toolEdited?: string;
|
||||
};
|
||||
language: string;
|
||||
|
||||
/**
|
||||
* Terminal command output. Displayed when the terminal is no longer available.
|
||||
*/
|
||||
output?: {
|
||||
/** The raw output text, may include ANSI escape codes. */
|
||||
text: string;
|
||||
};
|
||||
|
||||
/**
|
||||
* Command execution state.
|
||||
*/
|
||||
state?: {
|
||||
/** Exit code of the command. */
|
||||
exitCode?: number;
|
||||
/** Duration of execution in milliseconds. */
|
||||
duration?: number;
|
||||
};
|
||||
}
|
||||
|
||||
export class McpToolInvocationContentData {
|
||||
|
||||
Reference in New Issue
Block a user