UNPKG

simple-git

Version:

Simple GIT interface for node.js

9 lines (8 loc) 270 B
import type { SimpleGit } from '../../../typings'; export declare enum GitConfigScope { system = "system", global = "global", local = "local", worktree = "worktree" } export default function (): Pick<SimpleGit, 'addConfig' | 'getConfig' | 'listConfig'>;