1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00
Files
go-inbucket/ui/src/Ports.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