astynax / tea-combine / TeaCombine.Effectful

A common types for the effectful cominators.

TODO: add some great docs.


type alias Update model msg =
msg -> model -> ( model
, Platform.Cmd.Cmd msg 
}

A type alias for the effectful update function.


type alias Subscription model msg =
model -> Platform.Sub.Sub msg

A type alias for the subscription function.