1 2 3 4 5 6 7 8 9 10 11 12 13
/** * Common TypeScript types shared across the application */ export interface Project { id: string name: string containerTag: string createdAt: string updatedAt: string isExperimental?: boolean emoji?: string }