Skip to content

Commit 42b1b75

Browse files
committed
fix: allow string[] in arg signature
1 parent d7a601d commit 42b1b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export type ParsedArgs<T extends ArgsDef = ArgsDef> = { _: string[] } & Record<
3434
}[keyof T],
3535
boolean
3636
> &
37-
Record<string, string | boolean>;
37+
Record<string, string | boolean | string[]>;
3838

3939
// ----- Command -----
4040

0 commit comments

Comments
 (0)