Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/cd25c35c590efc4731843e23930ac99c4da9d47341616cf941fd93e35089165da5183b9fcbfd1c8f72d214b81a8cf948be1010268b573f10f69276193c8333
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

6 lines
289 B
Text

import Decimal from 'decimal.js';
import { NumberFormatInternal, NumberFormatPart } from '../types/number';
/**
* https://tc39.es/ecma402/#sec-partitionnumberpattern
*/
export declare function PartitionNumberPattern(internalSlots: NumberFormatInternal, _x: Decimal): NumberFormatPart[];