Rocky_Mountain_Vending/.pnpm-store/v10/files/66/1b5dae0fd24bee08af5f31d952f608d7e82ba0fc55f230db0fa967ff2d85591bf2e96e17c1f9c3b6d72c134c22872345ed8eb91e37b848f05f37d41fe4c569
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
361 B
Text

import type { Brand } from './Brand.js';
export type Seconds = Brand<number, 'Seconds'>;
export type MilliSeconds = Brand<number, 'MilliSeconds'>;
export type MicroSeconds = Brand<number, 'MicroSeconds'>;
export declare function milliSecondsToSeconds(x: MilliSeconds): Seconds;
export declare function microSecondsToMilliSeconds(x: MicroSeconds): MilliSeconds;