export type User = { id: string; name: string; githubId: string; }; export type Entry = { text: string; completed: boolean; id: number; };