Skip to content

Commit

Permalink
fix(command): fix option types for useRawArgs (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Apr 17, 2022
1 parent 684ac10 commit 7acac27
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 130 deletions.
2 changes: 1 addition & 1 deletion command/command.ts
Expand Up @@ -556,7 +556,7 @@ export class Command<
*/
public useRawArgs(
useRawArgs = true,
): Command<CPG, CPT, CO, Array<string>, CG, CT, CGT, CP> {
): Command<void, void, void, Array<string>, void, void, void, CP> {
this.cmd._useRawArgs = useRawArgs;
return this as Command<any>;
}
Expand Down

0 comments on commit 7acac27

Please sign in to comment.