From 42b1b752c00873b4053e2ff08d2959618a16b7ab Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 24 Aug 2023 15:23:37 +0100 Subject: [PATCH] fix: allow string[] in arg signature --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 85857bb..cd71977 100644 --- a/src/types.ts +++ b/src/types.ts @@ -34,7 +34,7 @@ export type ParsedArgs = { _: string[] } & Record< }[keyof T], boolean > & - Record; + Record; // ----- Command -----