Files
klz-cables.com/.pnpm-store/v10/files/5b/dcf01cf06e71efd586e451464df7cec97b89753199a99730da49f05d42141b77e476a1096ac8a994c8dd5747b649f0da6723d9b424c8a0e775d4c634e56e0e
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
364 B
Plaintext

import type { Decimal } from "decimal.js";
import { type NumberFormatInternal } from "../types/number.js";
/**
* https://tc39.es/ecma402/#sec-formatnumericrange
*/
export declare function FormatNumericRange(numberFormat: Intl.NumberFormat, x: Decimal, y: Decimal, { getInternalSlots }: {
getInternalSlots(nf: Intl.NumberFormat): NumberFormatInternal;
}): string;