Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
leibale authored Apr 25, 2023
1 parent 7e09c8b commit 17f59a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/lib/commander.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ export function transformCommandArguments<T = ClientCommandOptions>(
command: RedisCommand,
args: Array<unknown>
): {
jsArgs: RedisCommandArguments;
args: Array<unknown>;
jsArgs: Array<unknown>;
args: RedisCommandArguments;
options: CommandOptions<T> | undefined;
} {
let options;
Expand Down

0 comments on commit 17f59a1

Please sign in to comment.