UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

11 lines (10 loc) 338 B
import type { ValidConfigOptions } from '../options/options.js'; import type { Commit } from './sourceCommit/parse-source-commit.js'; export type CommitAuthor = { name: string; email: string; }; export declare function getCommitAuthor({ options, commit, }: { options: ValidConfigOptions; commit: Commit; }): CommitAuthor;