Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/cffe9a46bba7cdbe8cf7606a9323413a84ec0f1612722599b7152e2d64963bc63c091f10d20b39447470bf949b2c3901bc42f0be8862ac434ba10e96c6f16c
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

49 lines
No EOL
1.5 KiB
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Browser } from '../api/Browser.js';
import { BrowserLauncher, type ResolvedLaunchArgs } from './BrowserLauncher.js';
import type { ChromeReleaseChannel, LaunchOptions } from './LaunchOptions.js';
import type { PuppeteerNode } from './PuppeteerNode.js';
/**
* @internal
*/
export declare class ChromeLauncher extends BrowserLauncher {
constructor(puppeteer: PuppeteerNode);
launch(options?: LaunchOptions): Promise<Browser>;
/**
* @internal
*/
computeLaunchArguments(options?: LaunchOptions): Promise<ResolvedLaunchArgs>;
/**
* @internal
*/
cleanUserDataDir(path: string, opts: {
isTemp: boolean;
}): Promise<void>;
defaultArgs(options?: LaunchOptions): string[];
executablePath(channel?: ChromeReleaseChannel, validatePath?: boolean): string;
}
/**
* Extracts all features from the given command-line flag
* (e.g. `--enable-features`, `--enable-features=`).
*
* Example input:
* ["--enable-features=NetworkService,NetworkServiceInProcess", "--enable-features=Foo"]
*
* Example output:
* ["NetworkService", "NetworkServiceInProcess", "Foo"]
*
* @internal
*/
export declare function getFeatures(flag: string, options?: string[]): string[];
/**
* Removes all elements in-place from the given string array
* that match the given command-line flag.
*
* @internal
*/
export declare function removeMatchingFlags(array: string[], flag: string): string[];
//# sourceMappingURL=ChromeLauncher.d.ts.map