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>
31 lines
980 B
Text
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 };
|