1
1
mirror of https://github.com/github/semantic.git synced 2024-12-18 20:31:55 +03:00

Re-export the whole module.

This commit is contained in:
Rob Rix 2017-08-23 11:49:29 -04:00
parent 520212bc34
commit 9edec90492

View File

@ -1,10 +1,10 @@
{-# LANGUAGE TypeOperators #-}
module Data.Functor.Classes.Pretty.Generic
( Pretty1(..)
( module Pretty
, genericLiftPretty
) where
import Data.Text.Prettyprint.Doc
import Data.Text.Prettyprint.Doc as Pretty
import GHC.Generics
genericLiftPretty :: (Generic1 f, GPretty1 (Rep1 f)) => (a -> Doc ann) -> ([a] -> Doc ann) -> f a -> Doc ann