Files
klz-cables.com/.pnpm-store/v10/files/e1/94610b7180f1cf77172d94e466577f85e6b901fbe54f70cbe094b6bbc74317ef9e621a14e6cf9b534233b1696df5fd668d77a4e1d3bb1377ee042ce4962ed5
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

23 lines
1.0 KiB
Plaintext

import type { I18nClient, I18nOptions, Language } from '@payloadcms/translations';
import type { ClientConfig, LanguageOptions, Locale, SanitizedPermissions, ServerFunctionClient, TypedUser } from 'payload';
import React from 'react';
import type { Theme } from '../Theme/index.js';
type Props = {
readonly children: React.ReactNode;
readonly config: ClientConfig;
readonly dateFNSKey: Language['dateFNSKey'];
readonly fallbackLang: I18nOptions['fallbackLanguage'];
readonly isNavOpen?: boolean;
readonly languageCode: string;
readonly languageOptions: LanguageOptions;
readonly locale?: Locale['code'];
readonly permissions: SanitizedPermissions;
readonly serverFunction: ServerFunctionClient;
readonly switchLanguageServerAction?: (lang: string) => Promise<void>;
readonly theme: Theme;
readonly translations: I18nClient['translations'];
readonly user: null | TypedUser;
};
export declare const RootProvider: React.FC<Props>;
export {};
//# sourceMappingURL=index.d.ts.map