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