Type Alias URLSearchParamsRecord

URLSearchParamsRecord: Record<
    string,
    | string
    | string[]
    | (string | string[])[]
    | number
    | number[]
    | boolean
    | Date
    | null
    | undefined,
>

Shape of allowed record object that can be appended to a URLSearchParams.