From 852ce3f3f6b2b456d3380c0246ea4aeeda515e29 Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Sun, 21 Jan 2024 23:30:00 +0200 Subject: [PATCH] fix: type err --- src/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.ts b/src/command.ts index d9a2b3b..0fd57cc 100644 --- a/src/command.ts +++ b/src/command.ts @@ -404,7 +404,7 @@ export class MassargCommand 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 // fill defaults for (const option of this.options) {