Skip to content

Commit

Permalink
feat: support matching numbers, bool in query strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Apr 23, 2024
1 parent 40c424c commit d2237bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/v3/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ export declare type TemplateHeaders = {

export type TemplateQuery = Record<
string,
string | Matcher<string> | Array<string | Matcher<string>>
| string
| Matcher<string | number | boolean>
| Array<string | Matcher<string | number | boolean>>
>;

export interface V3Interaction {
Expand Down

0 comments on commit d2237bd

Please sign in to comment.