Scylla/src/Scylla/Notification.elm

12 lines
280 B
Elm

port module Scylla.Notification exposing (..)
import Json.Decode
type alias Notification =
{ name : String
, text : String
, room : String
}
port sendNotificationPort : Notification -> Cmd msg
port onNotificationClickPort : (Json.Decode.Value -> msg) -> Sub msg