| summaryrefslogtreecommitdiff | 
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2018-09-28 15:42:55 +0200 | 
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2018-09-28 15:42:55 +0200 | 
| commit | fc06ceae1de311f3aa6383fc9c37f87506005459 (patch) | |
| tree | 34c8e79acbd4e9e131f3e5adaa69444043778fd1 /src/shared/Action/Ports.elm | |
| parent | 55f01ce3978f12eafe7e726ee52133169c84b2bc (diff) | |
...
Diffstat (limited to 'src/shared/Action/Ports.elm')
| -rw-r--r-- | src/shared/Action/Ports.elm | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/src/shared/Action/Ports.elm b/src/shared/Action/Ports.elm index 460defc..70d5183 100644 --- a/src/shared/Action/Ports.elm +++ b/src/shared/Action/Ports.elm @@ -1,5 +1,11 @@  port module Action.Ports exposing (..) -port read_params : () -> (Cmd msg) -port store_params : (Int, String) -> (Cmd msg) -port store_results : (String) -> (Cmd msg) +port get_params : () -> (Cmd msg) +port params_in : ((Int, String) -> msg) -> (Sub msg) +port set_params : (Int, String) -> (Cmd msg) + +port get_results : () -> (Cmd msg) +port results_in : (String -> msg) -> (Sub msg) +port set_results : (String) -> (Cmd msg) + +port set_signal : (Bool) -> (Cmd msg) | 


