aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/tasks/config.d.ts
blob: 14bc2bb1a113d36f6bc50688906d74b4c1e33a95 (plain)
1
2
3
4
5
6
7
8
import { SimpleGit } from '../../../typings';
export declare enum GitConfigScope {
    system = "system",
    global = "global",
    local = "local",
    worktree = "worktree"
}
export default function (): Pick<SimpleGit, 'addConfig' | 'getConfig' | 'listConfig'>;