Rocky_Mountain_Vending/.pnpm-store/v10/files/01/3c139db7a33f8b67dd909abec583c4a8242ae86255ac23a7860c6e99919a5649c500ffca27aaea096023b1756bbec7eab047a0b03182b8d81118f70e724d7f
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

9 lines
492 B
Text

import Decimal from 'decimal.js';
import { RawNumberFormatResult, UnsignedRoundingModeType } from '../types/number';
/**
* https://tc39.es/ecma402/#sec-torawprecision
* @param x a finite non-negative Number or BigInt
* @param minPrecision an integer between 1 and 21
* @param maxPrecision an integer between 1 and 21
*/
export declare function ToRawPrecision(x: Decimal, minPrecision: number, maxPrecision: number, unsignedRoundingMode: UnsignedRoundingModeType): RawNumberFormatResult;