import type { GitCommit, FileModification } from "./types/git_commit_type"; import checkoutCommit from "./checkout_commit"; import gitPull from "./git_pull"; import gitDiff from "./git_diff"; export interface GitToJsOptions { sinceCommit: string | undefined; } declare const gitToJs: (repoPath: string, options?: GitToJsOptions) => Promise; export { gitToJs, checkoutCommit, gitPull, gitDiff }; export type { GitCommit, FileModification };