renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
11 lines (10 loc) • 453 B
TypeScript
import type { RenovateConfig } from '../../../../../config/types';
import type { PrDebugData } from '../../../../../modules/platform';
import type { BranchConfig } from '../../../../types';
interface PrBodyConfig {
appendExtra?: string | null | undefined;
rebasingNotice?: string;
debugData: PrDebugData;
}
export declare function getPrBody(branchConfig: BranchConfig, prBodyConfig: PrBodyConfig, config: RenovateConfig): string;
export {};