fix: type err

This commit is contained in:
2024-01-21 23:30:00 +02:00
committed by Chen Asraf
parent f99529b18b
commit 852ce3f3f6

View File

@@ -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) {