1234567891011121314151617181920212223242526 |
- import { BrowserPlatform, ChromeReleaseChannel } from './types.js';
- export declare function resolveDownloadUrl(platform: BrowserPlatform, buildId: string, baseUrl?: string): string;
- export declare function resolveDownloadPath(platform: BrowserPlatform, buildId: string): string[];
- export declare function relativeExecutablePath(platform: BrowserPlatform, _buildId: string): string;
- export declare function getLastKnownGoodReleaseForChannel(channel: ChromeReleaseChannel): Promise<{
- version: string;
- revision: string;
- }>;
- export declare function resolveBuildId(_platform: BrowserPlatform, channel: ChromeReleaseChannel): Promise<string>;
- export declare function resolveSystemExecutablePath(platform: BrowserPlatform, channel: ChromeReleaseChannel): string;
|