simple-git
Version:
Simple GIT interface for node.js
20 lines (19 loc) • 435 B
TypeScript
import { Options } from '../types';
export interface DefaultLogFields {
hash: string;
date: string;
message: string;
refs: string;
body: string;
author_name: string;
author_email: string;
}
export declare type LogOptions<T = DefaultLogFields> = Options | {
format?: T;
file?: string;
from?: string;
multiLine?: boolean;
symmetric?: boolean;
strictDate?: boolean;
to?: string;
};