task-workflow
Version:
a task workflow tools
18 lines (17 loc) • 436 B
TypeScript
import { PromisifySpawnLib } from './promisify-spawn';
interface GitMethods {
(...args: Array<string>): Promise<PromisifySpawnLib.Result>;
}
/**
* git方法,报错即退出
*/
export declare const git: GitMethods;
/**
* git方法,错误仅仅打印提示
*/
export declare const gitWithoutBreak: GitMethods;
/**
* git方法,错误也无提示
*/
export declare const gitInSilent: GitMethods;
export {};