Trim imports, remove a cycle
[ghc-base.git] / Data / Typeable.hs-boot
index 5a2989c..d9bc373 100644 (file)
@@ -4,12 +4,14 @@
 module Data.Typeable where
 
 import GHC.Base
+import GHC.Show
 
 data TypeRep
 data TyCon
 
-mkTyCon :: String -> TyCon
-mkTyConApp :: TyCon -> [TypeRep] -> TypeRep
+mkTyCon      :: String -> TyCon
+mkTyConApp   :: TyCon -> [TypeRep] -> TypeRep
+showsTypeRep :: TypeRep -> ShowS
 
 class Typeable a where
   typeOf :: a -> TypeRep