qfetch
    Preparing search index...

    Type Alias QueryParamEntries

    QueryParamEntries: Record<string, QueryParamValue>

    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"
    };