Created
April 6, 2017 16:45
-
-
Save phpnode/69b2062c174a04742b18f19f442133a1 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
type Linkable = { | |
name: string, | |
profileURL: string | |
}; | |
function bigOldObject () { | |
return { | |
id: 1, | |
name: 'foo', | |
email: '[email protected]', | |
avatarURL: '/wat.jpg', | |
profileURL: '/user/1' | |
}; | |
} | |
function makeLink () { | |
// Here we're explicitly saying that we only depend | |
// on the 'Linkable' properties, despite the function | |
// returning a larger object. | |
const subject: Linkable = bigOldObject(); | |
console.log(subject.id); // a flow error | |
return <a href={subject.profileURL}>{subject.name}</a>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment