Module

Halogen.ECharts

Package
purescript-halogen-echarts-simple
Repository
lucasdicioccio/purescript-halogen-echarts-simple

#Options Source

type Options :: Row Type -> Typetype Options o = Record o

#Output Source

type Output :: Row Type -> Typetype Output i = Record i

#Action Source

data Action :: Row Type -> Row Type -> Typedata Action o i

Constructors

#State Source

type State :: Row Type -> Typetype State o = { chart :: Maybe ChartRef, options :: Options o }

#Input Source

type Input :: Row Type -> Typetype Input o = { modified :: Boolean, options :: Options o }

#Query Source

data Query :: Row Type -> Type -> Typedata Query o a

Constructors

#StyleString Source

#component Source

component :: forall option item m. MonadAff m => StyleString -> Component (Query option) (Input option) (Output item) m