UNPKG

339 BTypeScriptView Raw
1export interface RemoteWithoutRefs {
2 name: string;
3}
4export interface RemoteWithRefs extends RemoteWithoutRefs {
5 refs: {
6 fetch: string;
7 push: string;
8 };
9}
10export declare function parseGetRemotes(text: string): RemoteWithoutRefs[];
11export declare function parseGetRemotesVerbose(text: string): RemoteWithRefs[];