Files
klz-cables.com/.pnpm-store/v10/files/59/911e1ab91da316ef671f94e6c1aa20ed287c1d90d686772c89538978c69c0f38a90b81e3989a76a90ee040d09c78be16730a2949e5029589826247fd646ccc
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

14 lines
637 B
Plaintext

import { type IntlConfig, type Locale, _createIntlFormatters } from 'use-intl/core';
declare function getConfigImpl(localeOverride?: Locale): Promise<{
locale: IntlConfig['locale'];
formats?: NonNullable<IntlConfig['formats']>;
timeZone: NonNullable<IntlConfig['timeZone']>;
onError: NonNullable<IntlConfig['onError']>;
getMessageFallback: NonNullable<IntlConfig['getMessageFallback']>;
messages?: NonNullable<IntlConfig['messages']>;
now?: NonNullable<IntlConfig['now']>;
_formatters: ReturnType<typeof _createIntlFormatters>;
}>;
declare const getConfig: typeof getConfigImpl;
export default getConfig;