Слава Україні! Героям слава!
Слава Україні! Героям слава!
@MangelMaxime Currently Fable transpiles F# options to `undefined` (when `None`), I wonder if that would be a better default for `Nullable` as well. But I don't maintain a lot of...
We need a way to model certain JS APIs (e.g. `Map.get` or `Array.find`) that return `T | undefined`. Here are the existing types we have: ```ts export type Nullable =...
@MangelMaxime Do you have a binding example of why can't we just transpile the F# nullable types (`T | null`) to the existing wider Fable TS type `Nullable`? ```ts export...