Files
klz-cables.com/.pnpm-store/v10/files/a1/c73a8cb658c0f20031093bb9419b15a8e341dc55e1984837ecdad669de67a0586ea6a817b28ac33253f8a2a3921c8f0b7382aac2c484d54ce3654726137749
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

7 lines
438 B
Plaintext

import type { ReactNode } from 'react';
export type TranslationValues = Record<string, string | number | Date>;
export type RichTagsFunction = (chunks: ReactNode) => ReactNode;
export type MarkupTagsFunction = (chunks: string) => string;
export type RichTranslationValues = Record<string, TranslationValues[string] | RichTagsFunction>;
export type MarkupTranslationValues = Record<string, TranslationValues[string] | MarkupTagsFunction>;