blob: 8da9baca5bcf002fe21d0bc029b8932a2df38087 (
plain)
1
2
3
4
5
6
|
port module Action.Ports exposing (..)
port store_new_session : (String, String) -> (Cmd msg)
port reset_session : () -> (Cmd msg)
port connected: (() -> msg) -> (Sub msg)
port go_to : (String) -> (Cmd msg)
|