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

14 lines
685 B
Text

export declare const clamp: (num: number, min: number, max: number) => number;
export declare const mod: (m: number, n: number) => number;
export declare const toFixedIfFloating: (value: string) => string;
/**
* Rounds a number (including float) down.
*/
export declare const floor: (value: number, precision?: number) => number;
/**
* Computes the great common divisor for two numbers.
* If the numbers are floats, they will be rounded to an integer.
*/
export declare const greatestCommonDivisor: (a: number, b: number) => number;
export declare const aspectRatio: (width: number, height: number) => string;
export declare const withThousandsSeparator: (num: number) => string;