From 1a954f44a5c03bd7e71cd812798e0946cbf0c12b Mon Sep 17 00:00:00 2001 From: Sam Pullman Date: Thu, 9 Mar 2023 19:39:18 +0800 Subject: [PATCH] fix: add string and number array to RequestParams --- lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types.ts b/lib/types.ts index a670362..a6cce45 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -6,7 +6,7 @@ export type RequestParams = | string | URLSearchParams | string[][] - | Record + | Record | undefined; export type ResolvedRequestParams =