renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
10 lines (9 loc) • 630 B
TypeScript
import type { ArtifactError } from '../../../../modules/manager/types';
import type { FileChange } from '../../../../util/git/types';
import type { BranchConfig, BranchUpgradeConfig } from '../../../types';
export interface PostUpgradeCommandsExecutionResult {
updatedArtifacts: FileChange[];
artifactErrors: ArtifactError[];
}
export declare function postUpgradeCommandsExecutor(filteredUpgradeCommands: BranchUpgradeConfig[], config: BranchConfig): Promise<PostUpgradeCommandsExecutionResult>;
export default function executePostUpgradeCommands(config: BranchConfig): Promise<PostUpgradeCommandsExecutionResult | null>;