Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created February 4, 2017 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/6ad3cd6c053f86c8e817b24b59b8e7b9 to your computer and use it in GitHub Desktop.
Save matthieu-D/6ad3cd6c053f86c8e817b24b59b8e7b9 to your computer and use it in GitHub Desktop.
// user.d.ts
export interface User {
name: string;
email: string;
address: {
country: string;
city: string;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment