fable-import
fable-import copied to clipboard
Fable bindings for JavaScript libraries
I found this issue with VSCode bindings where `window.withProgress` [has `Progress`](https://github.com/fable-compiler/fable-import/blob/935f0abc38b1fd21745014014b0393f610107fea/VSCode/Fable.Import.VSCode.fs#L766) in place where the original typings [have `Progress`](https://github.com/Microsoft/vscode/blob/881e3910a2e23200985910334603e44bb13a5cd5/src/vs/workbench/api/node/extHost.api.impl.ts#L334). This is quite easy to fix, but I hesitate, because this...
I propose to use this issue in order to track which repo has been extracted and where. When everything has been extracted we could put the list directly in the...
The latest commit `274ac05` of `Fable.Import.Browser.fs` has the following `opens`: ``` open System open Fable.Import.JS open Fable.Core open System ``` I think it's supposed to be `open Fable.Core.JS` since the...
I'm looking for advice on how to version binding packages. Please yell at me if I should take this somewhere else. This seems to me to be a fairly complex...
Could the Electron bindings be updated to Fable.Core 3? It's currently blocking a big update in [cmeeren/fable-elmish-electron-material-ui-demo](https://github.com/cmeeren/fable-elmish-electron-material-ui-demo) for Fable.Core 3 / Fable.React 5 compat/demo. (Btw, the bindings are for Electron...
Working with the current bindings is not a good experience for developers. The ts2fable generated code is hard to read (recursive modules), missing imports, and generally a pain to use...
I apologize if the solution to my issue is simple, as I'm still learning Fable (and F# actually). I'm trying to use the Electron ipcRenderer and ipcMain for inter/process communication...
I noticed that a lot of the time spent loading the REPL was dedicated to read assemblies and Fable.Import.Browser was the biggest one by large (probably due to the amount...
Hi there, I found Fable.Import.Browser not including type definitions of EventSource. It seems Fable.Import.Browser is the best module to place them considring that EventSource API is provided by each browser....
I'm playing around with ServiceWorkers and [self](https://github.com/fable-compiler/fable-import/blob/master/Browser/Fable.Import.Browser.fs#L10814) is limited to the Window class. ```fsharp module App.SW open Fable.Import.Browser let self = self :?> ServiceWorker self.addEventListener_install(fun installEvent -> printfn "service worker...