Module

Select.Effects

Package
purescript-halogen-select
Repository
citizennet/purescript-halogen-select

#FX Source

type FX e = Aff (Effects e)

The primitive Effects type, wrapped in Aff. This is used for convenience over Effects.

#Effects Source

type Effects e = (ajax :: AJAX, avar :: AVAR, console :: CONSOLE, dom :: DOM, now :: NOW | e)

The primitive Effects type. To extend your own component with this type, you might do:

main :: ∀ e. Eff (HalogenEffects (Effects e)) Unit