1
0
Fork 0
tooty/src/Ports.elm

11 lines
214 B
Elm
Raw Normal View History

port module Ports exposing (saveRegistration, saveClient, setStatus)
port saveRegistration : String -> Cmd msg
port saveClient : String -> Cmd msg
port setStatus : { id : String, status : String } -> Cmd msg