mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 23:55:28 +00:00
21 lines
338 B
Elm
21 lines
338 B
Elm
port module Ports exposing
|
|
( removeAccount
|
|
, setAccount
|
|
, setAllProgress
|
|
, setProgress
|
|
)
|
|
|
|
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
|