Niklas Korz
Niklas Korz
If I understood right, `getChildContext` does not exist anymore, as styled-components 4 is using the React 16 Context API. Even when "dumb casting" the returned component to `any` and calling...
At least for allennlp 1.5.0, the fix seems to be quite easy: Instead of accessing the former global `DEFAULT_PREDICTORS` in `my_allennlp/predictor/supertagger_predictor.py`, a property `default_predictor` has to be defined in `my_allennlp/models/supertagger.py`...
Hey, this library isn't what you're looking for, but if you're using a UITableView or UICollectionView you can call your code in the cellForItemAtIndexPath (or row, if you're using UITableView)...
Would incorporating [clutz](https://github.com/angular/clutz) be an option? I already wanted to try building TypeScript bindings for shaka-player using the clutz tool, but unfortunately I couldn't compile clutz successfully on neither macOS...
Thanks for the quick reply and the magnificent work you are doing on shaka-player. 💯
So I have spent about a day writing type definitions for all exported shaka-player classes, interfaces, events and functions. It's complete and based on my understanding of both the shaka-player...
Alright! Definitely interested, I'll have a look in the coming days.
So I have spent a bit of time figuring out how the closure externs generator works and I am starting to get an idea of how the TypeScript generator could...
Slowly getting there. The result of a day's work: https://gist.github.com/niklaskorz/6ac5d1917024033e8b050afbd9677d68 Obviously quite a few things are still missing, like the types themselves (need to finish the correct formatting for that)...
@yamass The problem is that shaka-player doesn't export its internal submodules as modules, they are only available as namespaces on the exported `shaka` object. If shaka-player happens to generate non-UMD...