UNPKG

ogit

Version:

A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.

14 lines (13 loc) 299 B
export declare class GitBranch { isCurrent: boolean; name: string; commitHash: string; label: string; isLocal: boolean; } export declare class GitBranchSummary { currentBranch: string; allBranches: string[]; branches: Map<string, GitBranch>; detached: boolean; }