Files
klz-cables.com/.pnpm-store/v10/files/3e/ef6a1077e207ed573ddc20f28f4ec619a14044444dabb0ef7eb6332c16b8bb180239d62f52ac7631d944292c52d579647b6dafdf59a65c034d95e5ca7d775f
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

11 lines
860 B
Plaintext

import type { ClientTranslationsObject, I18nClient } from '@payloadcms/translations';
import { type SanitizedConfig } from 'payload';
/**
* In the context of Next.js, this function initializes the i18n object for the current request.
*
* It must be called on the server side, and within the lifecycle of a request since it relies on the request headers and cookies.
*/
export declare const getNextRequestI18n: <TAdditionalTranslations = {}, TAdditionalClientTranslationKeys extends string = never>({ config, }: {
config: SanitizedConfig;
}) => Promise<[TAdditionalClientTranslationKeys] extends [never] ? I18nClient : TAdditionalTranslations extends object ? I18nClient<TAdditionalTranslations, TAdditionalClientTranslationKeys> : I18nClient<ClientTranslationsObject, TAdditionalClientTranslationKeys>>;
//# sourceMappingURL=getNextRequestI18n.d.ts.map