Преглед изворни кода

Fixes command execute issue

main
Eric Amodio пре 2 година
родитељ
комит
87f5910d11
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/system/command.ts

+ 1
- 1
src/system/command.ts Прегледај датотеку

@ -41,7 +41,7 @@ export function executeCommand(
command: SupportedCommands,
...args: T
): Thenable<U> {
return commands.executeCommand<U>(command, args);
return commands.executeCommand<U>(command, ...args);
}
export function executeCoreCommand<T = unknown, U = any>(command: CoreCommands, arg: T): Thenable<U>;

Loading…
Откажи
Сачувај