Skip to content

Instantly share code, notes, and snippets.

@wdevon99
Created March 24, 2024 16:48
Show Gist options
  • Save wdevon99/21edd77840671e92e14c53cada5be5aa to your computer and use it in GitHub Desktop.
Save wdevon99/21edd77840671e92e14c53cada5be5aa to your computer and use it in GitHub Desktop.
/**
*
* Define all global types in this file.
*
*/
type User = {
email: string;
image: string;
username: string;
};
type Todo = {
_id: string;
todoTitle: string;
todoDescription: string;
isComplete: boolean;
creator: User;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment