UNPKG

simple-git

Version:

Simple GIT interface for node.js

12 lines (11 loc) 339 B
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[];