Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/e6b1662c403979e3061d793886597ef70a1bbe41aadf0605de81775ddee0802941db558888467291d8b55000032bef074d7281b1bdede35e1cf967ca5b8ccf
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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