check-branches
Version:
CLI to automatically check if your current repo branch has any conflicts with all other repo's branches. Really useful when working with big teams.
19 lines • 598 B
TypeScript
/**
* check_branches: Class for the CLI.
* @name check_branches
* @module check_branches
**/
export default class check_branches {
workdir: String;
silent: Boolean;
constructor(arg?: {
silent?: boolean;
workdir?: String;
});
getCurrentBranch(): Promise<any>;
getBranches(): Promise<String[]>;
getBranchContributors(branch: String, min_percentage?: Number): Promise<any[]>;
generateReport(repo: String, branch: String, conflicts: any): Promise<void>;
check(branch?: String): Promise<void>;
}
//# sourceMappingURL=index.d.ts.map