ソースを参照

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

読み込み中…
キャンセル
保存