danger-plugin-istanbul-coverage
Version:
Danger.js plugin for monitoring istanbul code coverage on changed files.
13 lines (12 loc) • 341 B
TypeScript
export declare class GitService {
/**
* Finds the path of the local git directory.
* @returns A promise with the directory path
*/
getRootDirectory(): Promise<string>;
/**
* Finds the current git commit.
* @returns A promise with the current git commit
*/
getCurrentCommit(): Promise<string>;
}