aboutsummaryrefslogtreecommitdiff
path: root/src/Timer/Msg.elm
blob: 150d4fc6f894f80addc5abc2ccc003691a85ef08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Timer.Msg exposing
  ( Msg(..)
  )

import Time exposing (Time)

type Msg =
  Rename String
  | Pause
  | ToggleRunning
  | Stop
  | SetTime Time
  | SubstractTime Time