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>
9 lines
492 B
Text
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;
|