Last active
May 7, 2019 14:41
-
-
Save zackshapiro/80897b4de85c9bdb60d07e9a71c0df99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Avatar { | |
thumbnail: string; | |
large: string; | |
} | |
interface User { | |
id: number; | |
firstName: string; | |
lastName: string; | |
avatar: Avatar; | |
profession: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment