Module: Deskbot::Types

Defined in:
lib/deskbot/types.rb

Constant Summary collapse

Flag =
Types::Coercible::String.enum(
  "shift",
  "control",
  "alt",
  "meta",
  "help"
)
Button =
Types::Coercible::String.enum(
  "left",
  "middle",
  "right"
)
Flags =
Types::Array.of(Flag)
Character =
Types::Coercible::String.constrained(size: 1)
ScrollDirection =
Types::Coercible::String.enum(
  "up",
  "down"
)