backport
Version:
A CLI tool that automates the process of backporting commits
11 lines (10 loc) • 305 B
TypeScript
import { Commit } from '../entrypoint.api';
import { ValidConfigOptions } from '../options/options';
export type CommitAuthor = {
name: string;
email: string;
};
export declare function getCommitAuthor({ options, commit, }: {
options: ValidConfigOptions;
commit: Commit;
}): CommitAuthor;