1
0
Fork 0
tooty/src/Ports.elm

24 lines
398 B
Elm
Raw Normal View History

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