UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

8 lines (7 loc) 316 B
import type { ValidConfigOptions } from '../../../../options/options.js'; import type { Commit } from '../../../sourceCommit/parse-source-commit.js'; export declare function getTitle({ options, commits, targetBranch, }: { options: ValidConfigOptions; commits: Commit[]; targetBranch: string; }): string;