UNPKG

simple-git

Version:

Simple GIT interface for node.js

5 lines (4 loc) 284 B
import type { CommitResult, SimpleGit } from '../../../typings'; import type { StringTask } from '../types'; export declare function commitTask(message: string[], files: string[], customArgs: string[]): StringTask<CommitResult>; export default function (): Pick<SimpleGit, 'commit'>;