Created
January 29, 2017 09:08
-
-
Save cyrilletuzi/f37fe7588f6980317c0710032bf8060d to your computer and use it in GitHub Desktop.
This file contains 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 User { | |
age: number; | |
name: { | |
first: string, | |
last: string | |
}; | |
} | |
let user: User = { | |
age: 81, | |
name: { | |
first: `Henri`, | |
last: `Bergson` | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment