Skip to content

Commit

Permalink
fix: add string and number array to RequestParams
Browse files Browse the repository at this point in the history
  • Loading branch information
sampullman committed Mar 9, 2023
1 parent 9475f4c commit 1a954f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type RequestParams =
| string
| URLSearchParams
| string[][]
| Record<string, string | number | undefined | null>
| Record<string, string | string[] | number | number[] | undefined | null>
| undefined;

export type ResolvedRequestParams =
Expand Down

0 comments on commit 1a954f4

Please sign in to comment.