Files
klz-cables.com/.pnpm-store/v10/files/11/674fd97858d44c438a1a727062a7c9e9624df51428470d40bd18758d01a432e77a932c0c136ffb3ecd5c65c30fe1328c81326cc668a225dc82dd918e23b3bd
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
701 B
Plaintext

import type { ReadonlyURLSearchParams } from 'next/navigation.js';
import * as qs from 'qs-esm';
/**
* A utility function to parse URLSearchParams into a ParsedQs object.
* This function is a wrapper around the `qs` library.
* In Next.js, the `useSearchParams()` hook from `next/navigation` returns a `URLSearchParams` object.
* This function can be used to parse that object into a more usable format.
* @param {ReadonlyURLSearchParams} searchParams - The URLSearchParams object to parse.
* @returns {qs.ParsedQs} - The parsed query string object.
*/
export declare function parseSearchParams(searchParams: ReadonlyURLSearchParams): qs.ParsedQs;
//# sourceMappingURL=parseSearchParams.d.ts.map