Просмотр исходного кода

Fixes command execute issue

main
Eric Amodio 2 лет назад
Родитель
Сommit
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>;

Загрузка…
Отмена
Сохранить