We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* @flow */ (undefined: $Shape<{}>); // no error (null: $Shape<{ a: 1 }>); // no error either
I know that $Shape<T> is sort of an undocumented feature, yet I doubt this is expected behaviour.
$Shape<T>
Checked against 0.66
The text was updated successfully, but these errors were encountered:
v0.85 - still works incorrect.
Sorry, something went wrong.
Workaround type SaveShape<T> = $Shape<T> & {}; Try Flow
type SaveShape<T> = $Shape<T> & {};
fixed in v0.90.0
No branches or pull requests
I know that
$Shape<T>
is sort of an undocumented feature, yet I doubt this is expected behaviour.Checked against 0.66
The text was updated successfully, but these errors were encountered: