elysiajs / eden

Fully type-safe Elysia client
MIT License
147 stars 37 forks source link

Does not support multiple values for a certain query parameter #82

Closed mrctrifork closed 4 months ago

mrctrifork commented 4 months ago

Type annotations for query parameter are marked as query?: Record<string, unknown> | undefined when actually it should be query?: Record<string, string | string[] | undefined> | undefined.