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>
16 lines
641 B
Text
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>;
|
|
}
|