Files
claude-hud/dist/git.d.ts
2026-01-07 05:00:50 +00:00

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