UNPKG

git-graft

Version:

NPX CLI tool that generates a configurable Git Hook that prepends branch name patterns to commit messages.

13 lines (12 loc) 365 B
import { Command } from "@oclif/command"; export default class Doctor extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; static args: { name: string; }[]; run(): Promise<void>; }