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>
31 lines
No EOL
1.1 KiB
Text
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 |