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>
20 lines
No EOL
632 B
Text
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 |