mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
13 lines
201 B
Elm
13 lines
201 B
Elm
port module Ports exposing
|
|
( onSessionChange
|
|
, storeSession
|
|
)
|
|
|
|
import Json.Encode exposing (Value)
|
|
|
|
|
|
port onSessionChange : (Value -> msg) -> Sub msg
|
|
|
|
|
|
port storeSession : Value -> Cmd msg
|