packages feed

aeson-flowtyped 0.12.1 → 0.12.2

raw patch · 2 files changed

+4/−3 lines, 2 files

Files

aeson-flowtyped.cabal view
@@ -1,5 +1,5 @@ name:           aeson-flowtyped-version:        0.12.1+version:        0.12.2 synopsis:       Create Flow or TypeScript type definitions from Haskell data types. description:    Create Flow or TypeScript type definitions from Haskell data types. category:       Web
src/Data/Aeson/Flow.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE AllowAmbiguousTypes       #-} {-# LANGUAGE ConstraintKinds           #-} {-# LANGUAGE CPP                       #-} {-# LANGUAGE DataKinds                 #-}@@ -586,9 +587,9 @@   }  data Export where-  Export :: (FlowCallable a) => Proxy a -> Export+  Export :: FlowCallable a => Proxy a -> Export -export :: forall a. (FlowCallable a) => Export+export :: forall a. FlowCallable a => Export export = Export (Proxy :: Proxy a)  instance Eq Export where