add GHC.HetMet.{hetmet_kappa,hetmet_kappa_app}
[ghc-base.git] / Data / Typeable.hs-boot
index 4250e56..da6142e 100644 (file)
@@ -1,3 +1,18 @@
-{-# OPTIONS -fno-implicit-prelude #-}
+{-# LANGUAGE NoImplicitPrelude #-}
+
 module Data.Typeable where
+
+import Data.Maybe
+import GHC.Base
+
 data TypeRep
+data TyCon
+
+mkTyCon      :: String -> TyCon
+mkTyConApp   :: TyCon -> [TypeRep] -> TypeRep
+
+cast :: (Typeable a, Typeable b) => a -> Maybe b
+
+class Typeable a where
+  typeOf :: a -> TypeRep
+