UNPKG

git-mob-core

Version:
8 lines (7 loc) 360 B
import { type Author } from '../author'; declare function gitMessage(messagePath: string, appendFilePromise?: () => Promise<void>, readFilePromise?: () => Promise<string>): { writeCoAuthors: (coAuthorList: Author[]) => Promise<void>; readCoAuthors: () => Promise<string | undefined>; removeCoAuthors: () => Promise<void>; }; export { gitMessage };