this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add ProjectStatus and ProjectListItem types

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice d6abd543 e97d9af3

+11
+11
src/types.ts
··· 107 107 processed_at: string; 108 108 } 109 109 110 + // Project types 111 + export type ProjectStatus = 'shipped' | 'in_progress' | 'abandoned' | 'one_off' | 'experiment'; 112 + 113 + export interface ProjectListItem { 114 + path: string; 115 + name: string; 116 + status: ProjectStatus; 117 + totalSessions: number; 118 + daysSinceLastSession: number; 119 + } 120 + 110 121 // API response types 111 122 export interface DayListItem { 112 123 date: string;