Rocky_Mountain_Vending/.pnpm-store/v10/files/46/12e46b2304f48b0d207d3327b9be2627b4910f474d387c4b9dba8ed9a4b9ef25b52d17e6bb71c53d158bd80fafc8070e14611f45577425017f01e78e2a08b5
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

31 lines
980 B
Text

declare const Constants: {
throttling: {
DEVTOOLS_RTT_ADJUSTMENT_FACTOR: number;
DEVTOOLS_THROUGHPUT_ADJUSTMENT_FACTOR: number;
mobileSlow4G: {
rttMs: number;
throughputKbps: number;
requestLatencyMs: number;
downloadThroughputKbps: number;
uploadThroughputKbps: number;
cpuSlowdownMultiplier: number;
};
mobileRegular3G: {
rttMs: number;
throughputKbps: number;
requestLatencyMs: number;
downloadThroughputKbps: number;
uploadThroughputKbps: number;
cpuSlowdownMultiplier: number;
};
desktopDense4G: {
rttMs: number;
throughputKbps: number;
cpuSlowdownMultiplier: number;
requestLatencyMs: number;
downloadThroughputKbps: number;
uploadThroughputKbps: number;
};
};
};
export { Constants };