UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

6 lines (5 loc) 345 B
import type { LockFile } from './types'; export declare function getYarnLock(filePath: string): Promise<LockFile>; export declare function getZeroInstallPaths(yarnrcYml: string): string[]; export declare function isZeroInstall(yarnrcYmlPath: string): Promise<boolean>; export declare function getYarnVersionFromLock(lockfile: LockFile): string;