UNPKG

@wroud/git

Version:

A lightweight toolset for working with local git, including utilities for retrieving git commits and tags, ideal for CI/CD pipelines and automated release workflows.

13 lines 372 B
import type { IGitLink } from "./IGitLink.js"; import type { IGitTrailer } from "./IGitTrailer.js"; export interface IGitCommitInfo { hash: string; tags: string[]; authorName: string; authorEmail: string; subject: string; body: string; trailers: IGitTrailer[]; links: Record<string, IGitLink>; } //# sourceMappingURL=IGitCommitInfo.d.ts.map