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>
18 lines
No EOL
488 B
Text
18 lines
No EOL
488 B
Text
/**
|
|
* @license
|
|
* Copyright 2024 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import type { CdpFrame } from './Frame.js';
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class CdpPreloadScript {
|
|
#private;
|
|
constructor(mainFrame: CdpFrame, id: string, source: string);
|
|
get id(): string;
|
|
get source(): string;
|
|
getIdForFrame(frame: CdpFrame): string | undefined;
|
|
setIdForFrame(frame: CdpFrame, identifier: string): void;
|
|
}
|
|
//# sourceMappingURL=CdpPreloadScript.d.ts.map |