Skip to content

Commit b7b42be

Browse files
committed
chore: fix build
1 parent ff05faf commit b7b42be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/args.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function parseArgs(rawArgs: string[], argsDef: ArgsDef): ParsedArgs {
3030
const [, ...positionalArguments] = parsed._;
3131

3232
const parsedArgsProxy = new Proxy(parsed, {
33-
get(target: ParsedArgs, prop: string) {
33+
get(target: ParsedArgs<any>, prop: string) {
3434
return target[prop] ?? target[camelCase(prop)] ?? target[kebabCase(prop)];
3535
},
3636
});

0 commit comments

Comments
 (0)