Rocky_Mountain_Vending/.pnpm-store/v10/files/0d/0a20b08088d4a1c1f235db4d937d919763a4b04b37b17e042ff95f787500dc4f8c2b5a8f7d58e1738ab7f8de6adf736d4c5ea027dfe5475435742200ff0803
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

8 lines
401 B
Text

import Decimal from 'decimal.js';
import { NumberFormatInternal, NumberRangeToParts } from '../types/number';
/**
* https://tc39.es/ecma402/#sec-formatnumericrangetoparts
*/
export declare function FormatNumericRangeToParts(numberFormat: Intl.NumberFormat, x: Decimal, y: Decimal, { getInternalSlots, }: {
getInternalSlots(nf: Intl.NumberFormat): NumberFormatInternal;
}): NumberRangeToParts[];