Rocky_Mountain_Vending/.pnpm-store/v10/files/6a/5c14fa91bad570f62099b71de56d48856a305581c6161b980f128900ec768e4ba60196db7dfae92639d6126164cd8fbc6ba45b7b4d042d01972d0e4c2dc2cf
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

31 lines
1.1 KiB
Text

import type nodeTls from "node:tls";
import { Socket } from "node:net";
export declare class TLSSocket extends Socket implements nodeTls.TLSSocket {
authorized: boolean;
encrypted: true;
alpnProtocol: null;
authorizationError: Error;
exportKeyingMaterial(): Buffer;
getCipher(): nodeTls.CipherNameAndProtocol;
getPeerCertificate(detailed: true): nodeTls.DetailedPeerCertificate;
getPeerCertificate(detailed?: false): nodeTls.PeerCertificate;
getPeerCertificate(detailed?: boolean): nodeTls.PeerCertificate | nodeTls.DetailedPeerCertificate;
getCertificate(): null;
getEphemeralKeyInfo(): null;
getFinished(): undefined;
getPeerFinished(): undefined;
getProtocol(): null;
getSession(): undefined;
getSharedSigalgs(): unknown;
getTLSTicket(): undefined;
isSessionReused(): boolean;
renegotiate(options: {
rejectUnauthorized?: boolean | undefined
requestCert?: boolean | undefined
}, callback: (err: Error | null) => void): undefined;
setMaxSendFragment(size: number): boolean;
disableRenegotiation();
enableTrace();
getPeerX509Certificate(): undefined;
getX509Certificate(): undefined;
}