Chris Dopuch
Chris Dopuch
I am also having the same issue. When I `import { MyType } from 'module';` in the `d.ts` file, it doesn't get transpiled as `import type { MyType } from...
@ogupte the new docs work fixes this I think, is that right?
Not reproducing for me on Safari 10.1.12 Still reproducing for you @sodiumjoe ? Which safari version? [Screenshot](https://imgur.com/a/FRqD3)
I ran into the same problem today with this test code: ``` type xType = {| data: number, onClick: (e: string) => void // this is the problem line |}...
Tagging the author @ganemone, do you have any ideas here Giancarlo? (thank you for writing these definitions in the first place, I'm _so close_ to getting my Apollo usage typed...
@jedwards1211 Thanks for the quick response! > Are you doing it just to bind the type parameters? Yes, that's right. Unfortunately, the typings for the data and variables won't flow...
First off, I realized that my example repo was not actually running Flow correctly, I have fixed that and pushed it to the master branch -- sorry about that! Second,...
@jedwards1211 yeah I wondered the same thing, that was the very first thing I tried (since inferring the fields based on the props passed in would be the ideal case,...
Just checked, without the `extends` or the wrapper, the bare `Query` also does not type check variables. You have to pass in the Variables type param for it to check...
Nope, sorry I was trying to answer this question: >What I meant about inference is I wonder if with this annotation if it would successfully error if the variables prop...