packages feed

taskwarrior-0.5.0.0: src/Taskwarrior/UDA.hs

-- | User defined attributes are stored in a 'HashMap' from 'Text' to json 'Value's because we have no type information about them.
module Taskwarrior.UDA (
  UDA,
) where

import Data.Aeson (Value)
import Data.HashMap.Strict (HashMap)
import Data.Text (Text)

-- | A field will in practice only be a number or a string.
type UDA = HashMap Text Value