Skip to content

Commit

Permalink
fix(typescript): accept string array as query value
Browse files Browse the repository at this point in the history
  • Loading branch information
audunhalland committed Mar 3, 2021
1 parent 43c297a commit 69f74ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v3/pact.ts
Expand Up @@ -39,7 +39,7 @@ export interface V3Request {
method?: string
path?: string | MatchersV3.Matcher
query?: {
[param: string]: string | MatchersV3.Matcher
[param: string]: string | string[] | MatchersV3.Matcher
}
headers?: {
[header: string]: string | MatchersV3.Matcher
Expand Down

0 comments on commit 69f74ba

Please sign in to comment.