module Msg exposing ( Msg(..) ) import Time exposing (Time) import Keyboard.Extra as Keyboard type Msg = NoOp | Time Time | Keyboard Keyboard.Msg | Transform