logggai
Version:
AI-powered CLI for transforming your development work into professional content
20 lines • 421 B
TypeScript
export type Commit = {
hash: string;
message: string;
author: string;
date: string;
diff?: string;
};
export type CommitGroup = {
commits: Commit[];
date: string;
};
export type ProjectConfig = {
projectId: string;
name: string;
repo: string;
lastSyncedCommit: string;
contextType: 'personal' | 'organization';
contextId?: string;
};
//# sourceMappingURL=types.d.ts.map