Files
docspell/modules/webapp/src/main/elm/Ports.elm
2019-12-29 21:55:12 +01:00

16 lines
261 B
Elm

port module Ports exposing (..)
import Api.Model.AuthResult exposing (AuthResult)
port setAccount : AuthResult -> Cmd msg
port removeAccount : () -> Cmd msg
port setProgress : ( String, Int ) -> Cmd msg
port setAllProgress : ( String, Int ) -> Cmd msg