소스 검색

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

불러오는 중...
취소
저장