Rocky_Mountain_Vending/.pnpm-store/v10/files/66/2da2ee90c7de208bc8cd6238ba433bfe9df4b53891fa741c6eccfb39eeafc331961a40b1167c7a1a8b3d824fa3529f14268498ebaa3176cef3a34313f16b1c
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
312 B
Text

import { ClientRequest } from "http";
export interface SocketKeepAliveOptions {
keepAlive: boolean;
keepAliveMsecs?: number;
}
export declare const setSocketKeepAlive: (request: ClientRequest, { keepAlive, keepAliveMsecs }: SocketKeepAliveOptions, deferTimeMs?: number) => NodeJS.Timeout | number;