UNPKG

code-story

Version:

Get your code activity log for standup from git

7 lines (6 loc) 336 B
import { GitlogOptions as GitlogOptionsBase } from 'gitlog'; export declare type GitLogFields = 'authorDate' | 'committerDate' | 'subject' | 'hash' | 'abbrevHash'; export declare type GitlogOptions = GitlogOptionsBase<GitLogFields>; export declare type GitLogCommit = Record<GitLogFields | 'status', string> & { files: string[]; };