Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/391ad1d69f003c5c13bd75b5ce3f38136cc28dab5e3da6970badab9916c1a8fd960eeedfef75df2c623ddb07368f705148edd7c6b288087e365de571b6cac8
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

29 lines
No EOL
1 KiB
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type ProtocolMapping from 'devtools-protocol/types/protocol-mapping.js';
import type { CommandOptions } from '../api/CDPSession.js';
import { CDPSession } from '../api/CDPSession.js';
import type { Connection as CdpConnection } from '../cdp/Connection.js';
import type { BidiFrame } from './Frame.js';
/**
* @internal
*/
export declare class BidiCdpSession extends CDPSession {
#private;
static sessions: Map<string, BidiCdpSession>;
readonly frame: BidiFrame;
constructor(frame: BidiFrame, sessionId?: string);
connection(): CdpConnection | undefined;
get detached(): boolean;
send<T extends keyof ProtocolMapping.Commands>(method: T, params?: ProtocolMapping.Commands[T]['paramsType'][0], options?: CommandOptions): Promise<ProtocolMapping.Commands[T]['returnType']>;
detach(): Promise<void>;
/**
* @internal
*/
onClose: () => void;
id(): string;
}
//# sourceMappingURL=CDPSession.d.ts.map