UNPKG

firefox-location2

Version:

Approximates the current location of the Firefox browser across platforms.

12 lines (11 loc) 327 B
import fs from 'node:fs'; type FsLike = Pick<typeof fs, 'existsSync' | 'readdirSync'>; type EnvLike = NodeJS.ProcessEnv; export declare function resolveFromPuppeteerCache(deps?: { fs?: FsLike; env?: EnvLike; platform?: NodeJS.Platform; homeDir?: string; localAppData?: string; }): string | null; export {};