branch-remover
Version:
A small application for quickly removing unnecessary branches from GitHub.
10 lines (9 loc) • 401 B
TypeScript
import { BranchRemoverOptions, IBranchesProvider, IBranchRemover } from './Core';
export declare class BranchRemover implements IBranchRemover {
private readonly _provider;
get provider(): IBranchesProvider;
constructor(provider: IBranchesProvider);
execute(options: BranchRemoverOptions, test?: boolean): Promise<void>;
private buildIgnoreFunction;
private processBranches;
}