Hook up some of the command event

This commit is contained in:
Daniel Imms
2023-08-24 11:13:53 -07:00
parent ae9df9733c
commit 2af059e4a7
4 changed files with 64 additions and 10 deletions

View File

@@ -9,7 +9,7 @@ declare module 'vscode' {
export interface TerminalWillExecuteCommandEvent {
terminal: Terminal;
command: TerminalCommand<Thenable<TerminalExecuteCommandResult>>;
command: TerminalCommand<TerminalExecuteCommandResult | Thenable<TerminalExecuteCommandResult>>;
}
export interface TerminalExecuteCommandEvent {