Kyle Davis
Kyle Davis
Good point I can see how that would be confusing. T is the polymorphic type specified in the ReduceStore class: https://github.com/facebook/flux/blob/master/src/stores/FluxReduceStore.js#L42 Similar to polymorphic types/generics in many other languages. Do...
Thanks for the perspective, everything you're saying makes sense and I expect if you had issues understanding what T means others will as well. I'll try to add documentation with...
Flow is not required and simply additional. The todo-mvc example does not use it: https://github.com/facebook/flux/blob/master/examples/flux-todomvc/src/data/TodoStore.js
The file has typechecks which will complain if you pass anything other than a function to it. We should also probably add flow types too, but I do not believe...
Yeah that will be true of typechecks probably, but for flow we can provide external library definitions. Doesn't matter if the module is transpiled or not
No problem, just wanted to make sure you were aware. The project is looking awesome!
> The problem with CodeMirror is that it treats each line as independent of other lines I guess that makes sense why it's been so hard to find any plugin...
Thanks for the fast response! I guess at a minimum this is an error in the documentation, but I am hoping this can be updated to be the same interface...
Hi @mscout1, I haven't played in quite a few years so I'm unlikely to make future images, but I do think this is a good idea. If anyone wants to...
Originally I was proposing some return ppx like: ```reason let fn = (shouldRun, name) => { if (!shouldRun()) { [@return] [] }; if (name == "test") { [@return] [] };...