elearning/Frontend-Learner/node_modules/simple-git/dist/src/lib/tasks/config.d.ts
2026-01-13 10:48:02 +07:00

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