git-blame-line
Version:
Execute git blame for a single line and get a JSON as result
17 lines (16 loc) • 399 B
TypeScript
declare type BlameInfo = {
author: string;
authorMail: string;
authorTime: Date;
authorTz: string;
committer: string;
committerMail: string;
committerTime: Date;
committerTz: string;
summary: string;
previous: string;
filename: string;
sourceCode: string;
};
export declare function blameLine(filepathWithLine: string): Promise<BlameInfo>;
export {};