Query parameter entries as name-value pairs.
Each key is a parameter name and each value is either a string or an array of strings. Values are encoded using URLSearchParams.
const params: QueryParamEntries = { page: "1", tags: ["foo", "bar"], search: "hello world"}; Copy
const params: QueryParamEntries = { page: "1", tags: ["foo", "bar"], search: "hello world"};
Query parameter entries as name-value pairs.
Each key is a parameter name and each value is either a string or an array of strings. Values are encoded using URLSearchParams.