edge-location
Version:
Approximates the current location of the Edge browser across platforms.
12 lines (11 loc) • 328 B
TypeScript
import fs from 'node:fs';
type FsLike = Pick<typeof fs, 'existsSync' | 'readdirSync'>;
type EnvLike = NodeJS.ProcessEnv;
export declare function resolveFromPlaywrightCache(deps?: {
fs?: FsLike;
env?: EnvLike;
platform?: NodeJS.Platform;
homeDir?: string;
localAppData?: string;
}): string | null;
export {};