UNPKG

renovate

Version:

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

11 lines (10 loc) 352 B
import type { RenovateConfig } from '../../../config/types'; export type ConfigMigrationResult = { result: 'no-migration'; } | { result: 'add-checkbox'; } | { result: 'pr-exists' | 'pr-modified'; prNumber: number; }; export declare function configMigration(config: RenovateConfig, branchList: string[]): Promise<ConfigMigrationResult>;