Files
huishou/node_modules/simple-git/dist/src/lib/responses/GetRemoteSummary.d.ts
T
2026-07-27 13:37:48 +08:00

12 lines
339 B
TypeScript

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[];