fix issues

This commit is contained in:
meganrogge 2023-11-07 11:14:27 -08:00
parent 443d6a7873
commit fffeb49c30
No known key found for this signature in database
GPG key ID: AA74638D4878183D

View file

@ -43,10 +43,10 @@ declare module 'vscode' {
*/
terminalCommand: string;
/**
* Whether the command should be executed or just inserted
* Whether the command should be executed or just inserted (default)
*/
shouldExecute?: boolean;
constructor(terminalCommand: string);
constructor(terminalCommand: string, shouldExecute?: boolean);
}
export class TerminalQuickFixOpener {
/**