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