renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
5 lines (4 loc) • 326 B
TypeScript
import { CargoLock } from './schema';
export declare function extractLockFileVersions(lockFilePath: string): Promise<Map<string, string[]> | null>;
export declare function extractLockFileContentVersions(content: string): Map<string, string[]> | null;
export declare function parseLockFile(lockFile: string): CargoLock | null;