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
This issue would track what I can find is missing from converter when you typecheck resulting Flow files.
This list will be updated when I find something new
Unexpected use of this type. This happens because Flow doesn't understand this outside of class declarations
this
Example:
declare interface A { foo(): this; bar(): this; }
Illegal name. or Unsupported key in object type. when numbers used as keys in interfaces or types.
type Foo = { 0: "ACCESS"; } interface IFoo { 0: "ACCESS"; }
Flow PR: Number literal object keys typechecking facebook/flow#7593
The text was updated successfully, but these errors were encountered:
Flow now supports type parameter defaults in generic functions! facebook/flow@c18ee0d
Sorry, something went wrong.
No branches or pull requests
This issue would track what I can find is missing from converter when you typecheck resulting Flow files.
This list will be updated when I find something new
Unexpected use of
this
type.This happens because Flow doesn't understand
this
outside of class declarationsExample:
Illegal name. or Unsupported key in object type. when numbers used as keys in interfaces or types.
Flow PR: Number literal object keys typechecking facebook/flow#7593
The text was updated successfully, but these errors were encountered: