UNPKG

270 BTypeScriptView Raw
1import type { SimpleGit } from '../../../typings';
2export declare enum GitConfigScope {
3 system = "system",
4 global = "global",
5 local = "local",
6 worktree = "worktree"
7}
8export default function (): Pick<SimpleGit, 'addConfig' | 'getConfig' | 'listConfig'>;