Document EventMultiplexer

This commit is contained in:
Daniel Imms
2023-08-24 12:37:36 -07:00
parent 160947d592
commit c138344401
3 changed files with 29 additions and 2 deletions

View File

@@ -59,6 +59,9 @@ declare module 'vscode' {
/**
* An event that is emitted when a terminal with shell integration activated has completed
* executing a command.
*
* Note that this event will not fire if the executed command exits the shell, listen to
* {@link onDidOpenTerminal} to handle that case.
*/
export const onDidExecuteTerminalCommand: Event<TerminalExecuteCommandEvent>;
}