UNPKG

coveralls-api

Version:
24 lines (23 loc) 477 B
declare type GitHead = { id?: string; committer_name?: string; committer_email?: string; message?: string; author_name?: string; author_email?: string; }; declare type GitRemote = { name?: string; url?: string; }; export declare type GitData = { head?: GitHead; branch?: string; remotes?: GitRemote[]; }; export declare function getGitData(): Promise<{ head: GitHead; branch: string; remotes: GitRemote[]; }>; export {};