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

31 lines
No EOL
1.1 KiB
Text

/**
* @license
* Copyright 2018 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Protocol } from 'devtools-protocol';
import { type CDPSession } from '../api/CDPSession.js';
import type { Realm } from '../api/Realm.js';
import { TargetType } from '../api/Target.js';
import { WebWorker } from '../api/WebWorker.js';
import { CdpJSHandle } from './JSHandle.js';
import type { NetworkManager } from './NetworkManager.js';
/**
* @internal
*/
export type ConsoleAPICalledCallback = (eventType: string, handles: CdpJSHandle[], trace?: Protocol.Runtime.StackTrace) => void;
/**
* @internal
*/
export type ExceptionThrownCallback = (event: Protocol.Runtime.ExceptionThrownEvent) => void;
/**
* @internal
*/
export declare class CdpWebWorker extends WebWorker {
#private;
constructor(client: CDPSession, url: string, targetId: string, targetType: TargetType, consoleAPICalled: ConsoleAPICalledCallback, exceptionThrown: ExceptionThrownCallback, networkManager?: NetworkManager);
mainRealm(): Realm;
get client(): CDPSession;
close(): Promise<void>;
}
//# sourceMappingURL=WebWorker.d.ts.map