Files
klz-cables.com/.pnpm-store/v10/files/b7/80c09ec9cbb2e85982a649d944d90ae19227ca71c48b1c4cb437a12c5b8d61bc35628c91e570b19a967ca33ae6ff6d1b827dd5568bc6d21c7a62f013465ecc
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

9 lines
490 B
Plaintext

import type { JSX } from 'react';
import type { I18n, I18nClient, TFunction } from '../types.js';
type LabelType = (() => JSX.Element) | ((args: {
i18n: I18nClient;
t: TFunction;
}) => string) | JSX.Element | Record<string, string> | string;
export declare const getTranslation: <T extends LabelType>(label: T, i18n: Pick<I18n<any, any>, "fallbackLanguage" | "language" | "t">) => T extends JSX.Element ? JSX.Element : string;
export {};
//# sourceMappingURL=getTranslation.d.ts.map