Rocky_Mountain_Vending/.pnpm-store/v10/files/e2/cf475521e86508269acd8b0fc64930eff68ad1fd44a25d16e90b5840cba23127933a36522661ca0884c2f0e28eee45eab07defa049036a91aac361db5a2c4b
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

16 lines
641 B
Text

import type nodeNet from "node:net";
import { EventEmitter } from "node:events";
export declare class Server extends EventEmitter implements nodeNet.Server {
readonly __unenv__: true;
maxConnections: number;
connections: number;
readonly listening: boolean;
constructor(arg1?: nodeNet.ServerOpts | ((socket: nodeNet.Socket) => void), arg2?: (socket: nodeNet.Socket) => void);
listen(): this;
close(callback?: (err?: Error) => void): this;
address(): nodeNet.AddressInfo | string | null;
getConnections(cb: (error: Error | null, count: number) => void): void;
ref(): this;
unref(): this;
[Symbol.asyncDispose](): Promise<void>;
}