Files
vat-api.eu/node_modules/simple-git/dist/src/lib/tasks/config.d.ts
2026-02-13 22:02:30 +01:00

9 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'>;