8 lines
270 B
TypeScript
8 lines
270 B
TypeScript
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'>;
|