Files
elm-0.19-workshop/intro/part5/src/Ports.elm
Richard Feldman d57dec1681 Rename more stuff
2018-08-05 04:49:15 -04:00

10 lines
193 B
Elm

port module Ports exposing (onSessionChange, storeSession)
import Json.Encode exposing (Value)
port storeSession : Maybe String -> Cmd msg
port onSessionChange : (Value -> msg) -> Sub msg