_git.d.ts 458 B

1234567891011121314
  1. interface GitInfo {
  2. remoteUrl?: string | null;
  3. commit?: string | null;
  4. branch?: string | null;
  5. authorName?: string | null;
  6. authorEmail?: string | null;
  7. commitMessage?: string | null;
  8. commitTime?: string | null;
  9. dirty?: boolean | null;
  10. tags?: string | null;
  11. }
  12. export declare const getGitInfo: (remote?: string) => Promise<GitInfo | null>;
  13. export declare const getDefaultRevisionId: () => Promise<string | null>;
  14. export {};