2023-09-26 20:47:53 -07:00

12 lines
152 B
TypeScript

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