Closed mrctrifork closed 7 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.
query?: Record<string, unknown> | undefined
query?: Record<string, string | string[] | undefined> | undefined
Type annotations for query parameter are marked as
query?: Record<string, unknown> | undefined
when actually it should bequery?: Record<string, string | string[] | undefined> | undefined
.