Files
klz-cables.com/.pnpm-store/v10/files/f6/796232664971c1b573e37d9d1801ff492539cdf7e3b2abfd7913ae05bc8f293ac11f8ef39b2b9261e92db4c21e54adfa002318ecbc5c9a1ece4ee898170867
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

27 lines
981 B
Plaintext

import { useParams as useNextParams } from 'next/navigation.js';
import React from 'react';
export type Params = ReturnType<typeof useNextParams>;
interface IParamsContext extends Params {
}
/**
* @deprecated
* The ParamsProvider is deprecated and will be removed in the next major release. Instead, use the `useParams` hook from `next/navigation` directly. See https://github.com/payloadcms/payload/pull/9581.
* @example
* ```tsx
* import { useParams } from 'next/navigation'
* ```
*/
export declare const ParamsProvider: React.FC<{
children?: React.ReactNode;
}>;
/**
* @deprecated
* The `useParams` hook is deprecated and will be removed in the next major release. Instead, use the `useParams` hook from `next/navigation` directly. See https://github.com/payloadcms/payload/pull/9581.
* @example
* ```tsx
* import { useParams } from 'next/navigation'
* ```
*/
export declare const useParams: () => IParamsContext;
export {};
//# sourceMappingURL=index.d.ts.map