delicious-0.3.4: Accessing the del.icio.us APIs from Haskell (v2)

Portabilityportable
Stabilityprovisional
MaintainerSigbjorn Finne <sof@forkIO.com>
Safe HaskellNone

Network.Delicious.Types

Description

Types and data structures used by the Delicious API binding.

Documentation

data User Source

Constructors

User 

Instances

data DM a Source

Instances

catchDM :: DM a -> (IOError -> DM a) -> DM aSource

withUser :: User -> DM a -> DM aSource

withCount :: Int -> DM a -> DM aSource

liftIO :: IO a -> DM aSource

runDM :: User -> DM a -> IO aSource

data TagInfo Source

Constructors

TagInfo 

Fields

tagName :: Tag
 
tagUses :: Integer
 

Instances

data Bundle Source

Constructors

Bundle 

Fields

bundleName :: String
 
bundleTags :: [Tag]
 

Instances