I am new to PureScript and an intermediate Haskeller.
I challenged to convert an old style library to PureScript 0.13 style. But I stumbled upon a FFI type declaration:
foreign import data Promise :: # Effect -> Type -> Type
How can I represent this in new version?
Thanks in advance…