UNPKG

branch-remover

Version:

A small application for quickly removing unnecessary branches from GitHub.

11 lines (6 loc) 258 B
import { IBranchesProvider } from './IBranchesProvider'; import { BranchRemoverOptions } from './Types'; export interface IBranchRemover { readonly provider: IBranchesProvider; execute(options: BranchRemoverOptions, test?: boolean): Promise<void>; }