simple-git
Version:
Simple GIT interface for node.js
10 lines (9 loc) • 383 B
TypeScript
import { PushResult } from '../../../typings';
import { StringTask } from '../types';
declare type PushRef = {
remote?: string;
branch?: string;
};
export declare function pushTagsTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
export declare function pushTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
export {};