Consistently use CInt rather than Int for FDs
[ghc-base.git] / Data / Typeable.hs-boot
index 4250e56..5a2989c 100644 (file)
@@ -1,3 +1,16 @@
+
 {-# OPTIONS -fno-implicit-prelude #-}
+
 module Data.Typeable where
+
+import GHC.Base
+
 data TypeRep
+data TyCon
+
+mkTyCon :: String -> TyCon
+mkTyConApp :: TyCon -> [TypeRep] -> TypeRep
+
+class Typeable a where
+  typeOf :: a -> TypeRep
+