From 973a039b54327df74396605410ea9abe19c8a4e7 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 4 Sep 2016 21:21:11 +0200 Subject: Upgrade to elm 0.17.1 --- src/Msg.elm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/Msg.elm (limited to 'src/Msg.elm') diff --git a/src/Msg.elm b/src/Msg.elm new file mode 100644 index 0000000..b5efe2f --- /dev/null +++ b/src/Msg.elm @@ -0,0 +1,23 @@ +module Msg exposing + ( Msg(..) + ) + +import Time exposing (Time) + +import Model.Id exposing (Id) +import Model.Keyboard exposing (KeyCode) + +import Timer.Msg as Timer + +import Edition.Model exposing (Kind) + +type Msg = + NoOp + | Initialize + | AddNewTimer + | Time Time + | UpdateTimer Id Timer.Msg + | RemoveTimer Id + | Edit Id Kind + | ClickAway + | KeyPressed KeyCode -- cgit v1.2.3