Florian Verdonck
Florian Verdonck
Well to be honest I'm not sure if it is worth the effort. Writing a helper function that formats the `ToString()` of the guid to the shape I need could...
Actually I'm not 100% sure that list is complete, I'm missing [Cluster](https://nodejs.org/docs/latest-v10.x/api/cluster.html) for example. I personally don't have a time constraint for this, the prerelease version works fine in my...
Hmm, its not impossible as mentioned above, however the things we did always had a cold start. Alfonso is talking about [ast-viewer](https://gitlab.com/jindraivanek/ast-viewer) and [fantomas online](http://ratatosk.dynu.net/fantomas).
So do you still intend on mapping `.d.ts` files to F# using `ts2fable`? If this is the case, would you split it up manually after execution? Each file then lives...
`Fable.WebApi.WebGL` does remind me a lot of that other [web api thing](https://www.asp.net/web-api). Might be a confusing name for newcomers. I do like the breakdown on mdn.
Good thinking, perhaps we could do the following: ```fsharp let [][] self : Window = jsNative let [] self_window: Window = jsNative let [] self_web_worker : Worker = jsNative let...
[Service worker events](https://developers.google.com/web/fundamentals/primers/service-workers/#install_a_service_worker)
Ok, sounds good. So we would have something like `Fable.Import.ServerWorker` and this could be used independent of `Fable.Import.Browser`?
@alfonsogarciacaro I believe [this](https://github.com/Microsoft/TypeScript/blob/master/lib/lib.webworker.d.ts) is how TypeScript does it.
Could you give an example how the shadowing would work? I don't know what happens when two module expose the same member. Last one wins?