Ver a proveniência

Fixes command execute issue

main
Eric Amodio há 2 anos
ascendente
cometimento
87f5910d11
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/system/command.ts

+ 1
- 1
src/system/command.ts Ver ficheiro

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

Carregando…
Cancelar
Guardar