UNPKG

branch-remover

Version:

A small application for quickly removing unnecessary branches from GitHub.

28 lines (27 loc) 776 B
export declare class Auth { /** * Username or organization name. * * @example * https://github.com/sfm-tools/branch-remover * ^^^^^^^^ ^^^^^^^^^^^^^^ * owner repo */ readonly owner: string; /** * Repository name. * * @example * https://github.com/sfm-tools/branch-remover * ^^^^^^^^ ^^^^^^^^^^^^^^ * owner repo */ readonly repo: string; /** * GitHub access token. * * @see https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/creating-a-personal-access-token */ readonly token: string; constructor(owner: string, repo: string, token: string); }