UNPKG

383 BTypeScriptView Raw
1import { PushResult } from '../../../typings';
2import { StringTask } from '../types';
3declare type PushRef = {
4 remote?: string;
5 branch?: string;
6};
7export declare function pushTagsTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
8export declare function pushTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
9export {};