12 lines
152 B
TypeScript
12 lines
152 B
TypeScript
export type User = {
|
|
id: string;
|
|
name: string;
|
|
githubId: string;
|
|
};
|
|
|
|
export type Entry = {
|
|
text: string;
|
|
completed: boolean;
|
|
id: number;
|
|
};
|