Files
klz-cables.com/.pnpm-store/v10/files/f2/44a30e2e77df558326e7f9761da9565f321dd7066ab1c836918410a611a25916b44cf7a5250eb5873f6528400a926c0dd5142cc0e5de74d092a9040ca5303f
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
562 B
Plaintext

import { type CompiledMessage } from 'icu-minify/format';
import type { FormatMessage } from './types.js';
/**
* Formats a precompiled ICU message using icu-minify/format.
* This implementation requires messages to be precompiled at build time.
*/
declare function formatMessage(
/** The precompiled ICU message (CompiledMessage from icu-minify) */
...[, message, values, options]: Parameters<FormatMessage<CompiledMessage>>): ReturnType<FormatMessage<CompiledMessage>>;
declare namespace formatMessage {
var raw: boolean;
}
export default formatMessage;