UNPKG

renovate

Version:

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

9 lines (8 loc) 398 B
import type { Merge } from 'type-fest'; import type { RenovateConfig } from '../../../config/types'; import type { BranchConfig } from '../../types'; export type BranchifiedConfig = Merge<RenovateConfig, { branches: BranchConfig[]; branchList: string[]; }>; export declare function branchifyUpgrades(config: RenovateConfig, packageFiles: Record<string, any[]>): Promise<BranchifiedConfig>;