elm/core/Graphics/Text.elm

17 lines
No EOL
272 B
Elm

module Graphics.Text where
import Graphics.Color
import JavaScript
type Style = {
typeface : JSString,
href : JSString,
height : Float,
color : Color,
bold : Bool,
italic : Bool,
overline : Bool,
underline : Bool,
strikeThrough : Bool
}