Files
klz-cables.com/.pnpm-store/v10/files/cb/a42281fad30afe0693ce0107761c2ca3e59cd9361184fc4d96cb81e6b80cd160c74fbb31d4a4a651d491870613fda03c7ce3b59d020ce7a83970f04c0e40a9
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

15 lines
466 B
Plaintext

import { ExtendedQuery } from "../types/query.js";
//#region src/utils/query-to-params.d.ts
/**
* Transform nested query object to an url compatible format
*
* @param query The nested query object
*
* @returns Flat query parameters
*/
declare const queryToParams: <Schema = any, Item = Record<string, unknown>>(query: ExtendedQuery<Schema, Item>) => Record<string, string>;
//#endregion
export { queryToParams };
//# sourceMappingURL=query-to-params.d.ts.map