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>
72 lines
No EOL
1.9 KiB
Text
72 lines
No EOL
1.9 KiB
Text
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { Target, TargetType } from '../api/Target.js';
|
|
import type { CDPSession } from '../puppeteer-core.js';
|
|
import type { BidiBrowser } from './Browser.js';
|
|
import type { BidiBrowserContext } from './BrowserContext.js';
|
|
import type { BidiFrame } from './Frame.js';
|
|
import { BidiPage } from './Page.js';
|
|
import type { BidiWebWorker } from './WebWorker.js';
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class BidiBrowserTarget extends Target {
|
|
#private;
|
|
constructor(browser: BidiBrowser);
|
|
asPage(): Promise<BidiPage>;
|
|
url(): string;
|
|
createCDPSession(): Promise<CDPSession>;
|
|
type(): TargetType;
|
|
browser(): BidiBrowser;
|
|
browserContext(): BidiBrowserContext;
|
|
opener(): Target | undefined;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class BidiPageTarget extends Target {
|
|
#private;
|
|
constructor(page: BidiPage);
|
|
page(): Promise<BidiPage>;
|
|
asPage(): Promise<BidiPage>;
|
|
url(): string;
|
|
createCDPSession(): Promise<CDPSession>;
|
|
type(): TargetType;
|
|
browser(): BidiBrowser;
|
|
browserContext(): BidiBrowserContext;
|
|
opener(): Target | undefined;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class BidiFrameTarget extends Target {
|
|
#private;
|
|
constructor(frame: BidiFrame);
|
|
page(): Promise<BidiPage>;
|
|
asPage(): Promise<BidiPage>;
|
|
url(): string;
|
|
createCDPSession(): Promise<CDPSession>;
|
|
type(): TargetType;
|
|
browser(): BidiBrowser;
|
|
browserContext(): BidiBrowserContext;
|
|
opener(): Target | undefined;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class BidiWorkerTarget extends Target {
|
|
#private;
|
|
constructor(worker: BidiWebWorker);
|
|
page(): Promise<BidiPage>;
|
|
asPage(): Promise<BidiPage>;
|
|
url(): string;
|
|
createCDPSession(): Promise<CDPSession>;
|
|
type(): TargetType;
|
|
browser(): BidiBrowser;
|
|
browserContext(): BidiBrowserContext;
|
|
opener(): Target | undefined;
|
|
}
|
|
//# sourceMappingURL=Target.d.ts.map |