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
I find something strange. Like uildASTSchema.js#L338:
function makeImplementedInterfaces(def: ObjectTypeDefinition) { return def.interfaces.map(inter => produceTypeDef(inter)); }
which def.interfaces is interfaces?: ?Array<NamedType> (defined in ast.js#L296 ) Seems flow 0.26 should give an error on those,but it shouldn't.
def.interfaces
interfaces?: ?Array<NamedType>
The text was updated successfully, but these errors were encountered:
Fixed these errors in PR #420 .
Sorry, something went wrong.
Upgrade to Flow v0.28.
c7700f2
flow check now passes for the existing v0.26 as well as v0.27 and v0.28, so upgrading to the latest version. Fixes #412, #418, #420
No branches or pull requests
I find something strange.
Like uildASTSchema.js#L338:
which
def.interfaces
isinterfaces?: ?Array<NamedType>
(defined in ast.js#L296 )Seems flow 0.26 should give an error on those,but it shouldn't.
The text was updated successfully, but these errors were encountered: