Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/b3a137a6b93fb41c34aac03a0eff551486d7549c9d442daa98e8f22348257865a2a0956979c10febd327574062c81251f166df60e0b3e7c6a881c42a6f1f4a
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

43 lines
1.7 KiB
Text

import type nodeNet from "node:net";
import { type Callback, type BufferEncoding } from "../../../_internal/types.mjs";
import { Duplex } from "../stream/duplex.mjs";
export declare class Socket extends Duplex implements nodeNet.Socket {
readonly __unenv__: true;
readonly bufferSize: number;
readonly bytesRead: number;
readonly bytesWritten: number;
readonly connecting: boolean;
readonly destroyed: boolean;
readonly pending: boolean;
readonly localAddress: string;
readonly localPort: number;
readonly remoteAddress?: string;
readonly remoteFamily?: string;
readonly remotePort?: number;
readonly autoSelectFamilyAttemptedAddresses: readonly [];
readonly readyState: nodeNet.SocketReadyState;
constructor(_options?: nodeNet.SocketConstructorOpts);
write(_buffer: Uint8Array | string, _arg1?: BufferEncoding | Callback<Error | undefined>, _arg2?: Callback<Error | undefined>): boolean;
connect(_arg1: number | string | nodeNet.SocketConnectOpts, _arg2?: string | Callback, _arg3?: Callback);
end(_arg1?: Callback | Uint8Array | string, _arg2?: BufferEncoding | Callback, _arg3?: Callback);
setEncoding(_encoding?: BufferEncoding): this;
pause();
resume();
setTimeout(_timeout: number, _callback?: Callback): this;
setNoDelay(_noDelay?: boolean): this;
setKeepAlive(_enable?: boolean, _initialDelay?: number): this;
address(): {};
unref();
ref();
destroySoon();
resetAndDestroy();
}
export declare class SocketAddress implements nodeNet.SocketAddress {
readonly __unenv__: true;
address: string;
family: "ipv4" | "ipv6";
port: number;
flowlabel: number;
static parse(_address: string, _port?: number): undefined;
constructor(options: nodeNet.SocketAddress);
}