summaryrefslogtreecommitdiff
blob: c42ff8bf45119a08788682154144a85381bdf01f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
port module Action.Ports exposing (..)

port get_params : () -> (Cmd msg)
port params_in : (String -> msg) -> (Sub msg)
port set_params : (String) -> (Cmd msg)

port get_results : () -> (Cmd msg)
port results_in : (String -> msg) -> (Sub msg)
port set_results : (String) -> (Cmd msg)

port activate_notification : () -> (Cmd msg)
port disable_notification : () -> (Cmd msg)