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>
28 lines
No EOL
846 B
Text
28 lines
No EOL
846 B
Text
/**
|
|
* @license
|
|
* Copyright 2024 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import type { ConnectionTransport } from '../common/ConnectionTransport.js';
|
|
/**
|
|
* Experimental ExtensionTransport allows establishing a connection via
|
|
* chrome.debugger API if Puppeteer runs in an extension. Since Chrome
|
|
* DevTools Protocol is restricted for extensions, the transport
|
|
* implements missing commands and events.
|
|
*
|
|
* @experimental
|
|
* @public
|
|
*/
|
|
export declare class ExtensionTransport implements ConnectionTransport {
|
|
#private;
|
|
static connectTab(tabId: number): Promise<ExtensionTransport>;
|
|
onmessage?: (message: string) => void;
|
|
onclose?: () => void;
|
|
/**
|
|
* @internal
|
|
*/
|
|
constructor(tabId: number);
|
|
send(message: string): void;
|
|
close(): void;
|
|
}
|
|
//# sourceMappingURL=ExtensionTransport.d.ts.map |