/** * The text values which can be obtained from a `git log` invocation. */ export interface RawGitInfo { authorEmail: string; authorName: string; commitDateISO: string; commitHash: string; parentHash: string; refNames: string; sigKey?: string | undefined; sigStatus: string; sigTrust?: string | undefined; } /** * Information about the current state of git. */ export interface GitInfo extends RawGitInfo { branches: string[]; commitDate: Date; tags: string[]; } /** * Get very basic git status. */ export declare const gitInfo: () => GitInfo; //# sourceMappingURL=git-info.d.ts.map