Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/d1f9fbbf8fedbf48983ae8a97bd1d08bdf91edd5acf724b3a3c2f2045c70a0a3923fded806420b413b223cb1542d15e9db7327ba4537ec02f86b98a7aaa98b
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

8 lines
388 B
Text

import type { Addresses, RestoreOriginalFunction } from './types';
/**
* Proxy the TCP connect method to determine if any network access is made during the build
*
* @param addresses An array to track the addresses that are accessed.
* @returns A function that restores the original connect method.
*/
export declare function tcpProxy(addresses: Addresses): RestoreOriginalFunction;