module Graphics.PS.Font (Font(..)) where -- | Font data type. data Font = Font { fontName :: String , fontSize :: Double } deriving (Eq, Show)