浏览代码

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>;

正在加载...
取消
保存