Jordan Brown

Results 17 comments of Jordan Brown

I tried with `{raw: true}` and it still deleted the image in the row, even though that cell was not updated.

I ended up working around this issue by just saving the changed cells via `sheet.saveUpdatedCells();`

> How the libdefs should be named? I'm very interested in seeing a solution to this problem. At some point, I'd like to be able to version Flow's `react.js` libdef...

In the way Flow models react, `Props` should be the type of `this.props` and `Config` is the type of the Props with all defaultProps marked optional. The way you handled...

Note that this affects the types for ReactRedux. In a recent change, Flow changed the type parameter variance on ComponentType to be contravariant (releasing in 0.89), so getting rid of...

@wchargin: This is actually related to the conversation we had about the variance on ReadOnlyMap. For some background, the reason `$Subtype` and `$Supertype` exist was to have something like specifying...

That's an unsound use of `$Supertype` that will almost always behave like `any`. Can you show some ways you use the returned value?

I think I actually confused $Supertype and $Subtype when I said it would almost always behave like any. When `$Supertype` is a lower bound, it behaves like `T`, so I...

Ah, well I appreciate that! Unfortunately I'm no expert on lodash so I have no idea what a good type for this function would be. From the docs, it says...

Hi, thanks for reporting, and I'm very pleased to see someone already making use of Flow's mapped types in the wild! This is currently working as intended, though I do...