mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
Merged from https://github.com/jhillyerd/inbucket-elm Uses https://github.com/halfzebra/create-elm-app
14 lines
285 B
Elm
14 lines
285 B
Elm
port module Ports exposing (onSessionChange, storeSession, windowTitle)
|
|
|
|
import Data.Session exposing (Persistent)
|
|
import Json.Encode exposing (Value)
|
|
|
|
|
|
port onSessionChange : (Value -> msg) -> Sub msg
|
|
|
|
|
|
port storeSession : Persistent -> Cmd msg
|
|
|
|
|
|
port windowTitle : String -> Cmd msg
|