Skip to content

Instantly share code, notes, and snippets.

@rayrayzayzay
Created July 18, 2022 23:14
Show Gist options
  • Save rayrayzayzay/9cfbc157068060ccda3500ef769a7cc7 to your computer and use it in GitHub Desktop.
Save rayrayzayzay/9cfbc157068060ccda3500ef769a7cc7 to your computer and use it in GitHub Desktop.
❌ Unclear relationships between properties
type UserProfileRequest = {
isLoading: boolean
data?: UserProfileData
errorMessage?: string
statusCode?: number
}
// NOTE: In reality, we would probably use a generic like Loadable<UserProfileData>
// but that's outside the scope of this article.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment