Rocky_Mountain_Vending/.pnpm-store/v10/files/63/1a5ee587ffb377156b2762ae11eff09714cb165e5dec7f6ccb5ef257692b565ab1ad688a770e9947cc895ffef8ae461226838c2f8b0f01467b59a79f61f854
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

3 lines
240 B
Text

import Decimal from 'decimal.js';
import { UnsignedRoundingModeType } from '../types/number';
export declare function ApplyUnsignedRoundingMode(x: Decimal, r1: Decimal, r2: Decimal, unsignedRoundingMode: UnsignedRoundingModeType): Decimal;