Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/7a733b5861bcbfaf75a68770497f10d7f2e2ca350c2a0fe55dad0d12e721066908992978de24e79db67ccb4d0f30a165dbe78e32d972134ba308863e636d1b
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

67 lines
No EOL
1.9 KiB
Text

/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { ProtocolMapping } from 'devtools-protocol/types/protocol-mapping.js';
import { type CDPEvents, CDPSession, type CommandOptions } from '../api/CDPSession.js';
import type { Connection } from './Connection.js';
import type { CdpTarget } from './Target.js';
/**
* @internal
*/
export declare class CdpCDPSession extends CDPSession {
#private;
/**
* @internal
*/
constructor(connection: Connection, targetType: string, sessionId: string, parentSessionId: string | undefined, rawErrors: boolean);
/**
* Sets the {@link CdpTarget} associated with the session instance.
*
* @internal
*/
setTarget(target: CdpTarget): void;
/**
* Gets the {@link CdpTarget} associated with the session instance.
*
* @internal
*/
target(): CdpTarget;
connection(): Connection | undefined;
get detached(): boolean;
parentSession(): CDPSession | undefined;
send<T extends keyof ProtocolMapping.Commands>(method: T, params?: ProtocolMapping.Commands[T]['paramsType'][0], options?: CommandOptions): Promise<ProtocolMapping.Commands[T]['returnType']>;
/**
* @internal
*/
onMessage(object: {
id?: number;
method: keyof CDPEvents;
params: CDPEvents[keyof CDPEvents];
error: {
message: string;
data: any;
code: number;
};
result?: any;
}): void;
/**
* Detaches the cdpSession from the target. Once detached, the cdpSession object
* won't emit any events and can't be used to send messages.
*/
detach(): Promise<void>;
/**
* @internal
*/
onClosed(): void;
/**
* Returns the session's id.
*/
id(): string;
/**
* @internal
*/
getPendingProtocolErrors(): Error[];
}
//# sourceMappingURL=CdpSession.d.ts.map