renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
12 lines (11 loc) • 320 B
TypeScript
import type { PackageDependency } from '../types';
interface Ctx {
deps: PackageDependency[];
perlVersion?: string;
phase?: string;
tempPhase?: string;
depName?: string;
currentValue?: string;
}
export declare function parse(content: string): Pick<Ctx, 'deps' | 'perlVersion'> | null;
export {};