Files
elm-0.19-workshop/finished/src/Ports.elm
Richard Feldman f17c09108d Add finished/
2018-05-01 21:49:22 -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