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
917 B
Text
28 lines
No EOL
917 B
Text
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { BrowserLauncher, type ResolvedLaunchArgs } from './BrowserLauncher.js';
|
|
import type { LaunchOptions } from './LaunchOptions.js';
|
|
import type { PuppeteerNode } from './PuppeteerNode.js';
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class FirefoxLauncher extends BrowserLauncher {
|
|
constructor(puppeteer: PuppeteerNode);
|
|
static getPreferences(extraPrefsFirefox?: Record<string, unknown>): Record<string, unknown>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
computeLaunchArguments(options?: LaunchOptions): Promise<ResolvedLaunchArgs>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
cleanUserDataDir(userDataDir: string, opts: {
|
|
isTemp: boolean;
|
|
}): Promise<void>;
|
|
executablePath(_: unknown, validatePath?: boolean): string;
|
|
defaultArgs(options?: LaunchOptions): string[];
|
|
}
|
|
//# sourceMappingURL=FirefoxLauncher.d.ts.map |