10 lines
193 B
Elm
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
|