Skip to content

Instantly share code, notes, and snippets.

@FermiDirak
Created December 8, 2018 02:33
Show Gist options
  • Save FermiDirak/ac1c095dab7d72efa3d15df48cf2c286 to your computer and use it in GitHub Desktop.
Save FermiDirak/ac1c095dab7d72efa3d15df48cf2c286 to your computer and use it in GitHub Desktop.
flow_cookbook_1
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