simple-config-1.1.0: Text/Config/Types.hs
module Text.Config.Types
where
data ConfType
= ConfString
| ConfURI
| ConfInt
| ConfByteString
| ConfList ConfType
deriving (Show)
type ConfLine = (String, ConfType)
type ConfTmp = (String, [ConfLine])