Skip to content

Instantly share code, notes, and snippets.

@zackshapiro
Last active May 7, 2019 14:41
Show Gist options
  • Save zackshapiro/80897b4de85c9bdb60d07e9a71c0df99 to your computer and use it in GitHub Desktop.
Save zackshapiro/80897b4de85c9bdb60d07e9a71c0df99 to your computer and use it in GitHub Desktop.
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