Skip to content

Commit

Permalink
fix: type err
Browse files Browse the repository at this point in the history
  • Loading branch information
chenasraf committed Jan 21, 2024
1 parent 0742898 commit bc1979c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ export class MassargCommand<Args extends ArgsObject = ArgsObject>
try {
let _args: Args = { ...this.args, ...args } as Args
let _argv = [...argv]
const _a = this.args as Record<'extra', string[]>
const _a = this.args as Record<string, any>

// fill defaults
for (const option of this.options) {
Expand Down

0 comments on commit bc1979c

Please sign in to comment.