mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-21 15:52:37 +00:00
9 lines
300 B
TypeScript
9 lines
300 B
TypeScript
export interface GitStatus {
|
|
branch: string;
|
|
isDirty: boolean;
|
|
ahead: number;
|
|
behind: number;
|
|
}
|
|
export declare function getGitBranch(cwd?: string): Promise<string | null>;
|
|
export declare function getGitStatus(cwd?: string): Promise<GitStatus | null>;
|
|
//# sourceMappingURL=git.d.ts.map
|