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