UNPKG

478 BTypeScriptView Raw
1import { StringTask } from '../types';
2export declare function addRemoteTask(remoteName: string, remoteRepo: string, customArgs: string[]): StringTask<string>;
3export declare function getRemotesTask(verbose: boolean): StringTask<any>;
4export declare function listRemotesTask(customArgs: string[]): StringTask<string>;
5export declare function remoteTask(customArgs: string[]): StringTask<string>;
6export declare function removeRemoteTask(remoteName: string): StringTask<string>;