Rocky_Mountain_Vending/.pnpm-store/v10/files/40/ddc133923460463f17f70ac768b72d10c8a2f6e09c782661a5e007438e581f7b9de7860203dac17ae04335df914529139880b8df8a20bed9ecbfa73607600b
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

20 lines
No EOL
632 B
Text

/**
* @license
* Copyright 2018 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import NodeWebSocket from 'ws';
import type { ConnectionTransport } from '../common/ConnectionTransport.js';
/**
* @internal
*/
export declare class NodeWebSocketTransport implements ConnectionTransport {
#private;
static create(url: string, headers?: Record<string, string>): Promise<NodeWebSocketTransport>;
onmessage?: (message: NodeWebSocket.Data) => void;
onclose?: () => void;
constructor(ws: NodeWebSocket);
send(message: string): void;
close(): void;
}
//# sourceMappingURL=NodeWebSocketTransport.d.ts.map