UNPKG

git-mob-core

Version:
11 lines (10 loc) 312 B
import { AuthorTrailers } from './git-message/message-formatter'; export declare class Author { key: string; name: string; email: string; trailer: AuthorTrailers; constructor(key: string, name: string, email: string, trailer?: AuthorTrailers); format(): string; toString(): string; }