coveralls-api
Version:
API client for coveralls.io
24 lines (23 loc) • 477 B
TypeScript
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 {};