Files
klz-cables.com/.pnpm-store/v10/files/94/810369f53c0ce127c1d44e5d39a8b7a7ed5eaa5d3dff3a84dfb885a1c3b35086a9635d7838a9580a32717960605e98429848b3b871a2433521895756a66f64
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

20 lines
670 B
Plaintext

import type { Locale } from 'payload';
import React from 'react';
export declare const LocaleLoadingContext: React.Context<{
localeIsLoading: boolean;
setLocaleIsLoading: (_: boolean) => any;
}>;
export declare const LocaleProvider: React.FC<{
children?: React.ReactNode;
locale?: Locale['code'];
}>;
export declare const useLocaleLoading: () => {
localeIsLoading: boolean;
setLocaleIsLoading: (_: boolean) => any;
};
/**
* TODO: V4
* The return type of the `useLocale` hook will change in v4. It will return `null | Locale` instead of `false | {} | Locale`.
*/
export declare const useLocale: () => Locale;
//# sourceMappingURL=index.d.ts.map