Created
December 8, 2018 02:33
-
-
Save FermiDirak/ac1c095dab7d72efa3d15df48cf2c286 to your computer and use it in GitHub Desktop.
flow_cookbook_1
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
type Person = {| | |
+name: string, | |
+spiritAnimal: string, | |
|}; | |
const tenXer = { name: "dirak", spiritAnimal: "Godzilla" }; | |
const talk = (person: Person): void => { | |
console.log(`Hi, I'm ${name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment