mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
16 lines
261 B
Elm
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
|