aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/tasks/push.d.ts
blob: 4d18c710475ded3a731b119bece3d984e37cefe4 (plain)
1
2
3
4
5
6
7
8
9
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 {};