Skip to main content

Home > git-documentdb > NormalizedCommit

NormalizedCommit type#

Normalized Commit

Signature:
export declare type NormalizedCommit = {
oid: string;
message: string;
parent: string[];
author: {
name: string;
email: string;
timestamp: number;
};
committer: {
name: string;
email: string;
timestamp: number;
};
gpgsig?: string;
};