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

19 lines
No EOL
551 B
Text

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