msz/hammox

Add support for annotated types in tuples

fuelen opened this issue · 0 comments

this doesn't work

  @type event :: {event_name :: atom(), topics :: [String.t()]}

but this works

  @type event_name :: atom()
  @type topics :: [String.t()]
  @type event :: {event_name(), topics()}