We are using typa.http.assertQuery for an API we are using.
We need to be able to use nested query parameters in the query string.
An example of this would be a query like this: ?nested[param1]=1&nested[param2]=foo
Which should match with a type like this.
type Query = {
nested: {
param1: number
param2: string
}
}
Feature Request
We are using typa.http.assertQuery for an API we are using. We need to be able to use nested query parameters in the query string. An example of this would be a query like this:
?nested[param1]=1&nested[param2]=foo
Which should match with a type like this.