reflex-dom-0.4: Functional Reactive Web Apps with Reflex

Safe HaskellNone
LanguageHaskell2010

Reflex.Dom.Internal

Synopsis

Documentation

mainWidget' :: Widget () () -> JSM () #

Warning: mainWidget' is provided only as performance tweak. It is expected to disappear in future releases.

type DomTimeline = Spider #

The Reflex timeline for interacting with the DOM

type DomHost = SpiderHost Global #

The ReflexHost the DOM lives in

newtype AppInput t #

Constructors

AppInput 

newtype AppOutput t #

run :: JSM () -> IO () #

mainWidget :: (forall x. Widget x ()) -> IO () Source #

mainWidgetWithHead :: (forall x. Widget x ()) -> (forall x. Widget x ()) -> IO () Source #

mainWidgetWithCss :: ByteString -> (forall x. Widget x ()) -> IO () Source #

mainWidgetWithHead' :: (a -> Widget () b, b -> Widget () a) -> IO () Source #

mainWidgetInElementById :: Text -> (forall x. Widget x ()) -> IO () Source #