function removeStarListener<T, A>(listener): (dispatcher) => Effect<TinyEventDispatcher<T, A>, never, never>;
Remove the given wildcard listener from the given TinyEventDispatcher
.
The listener value must be the same reference that was previously added
• T
The possible event types that can be received
• A
The type of the event data which can be received
• listener: TinyEventListener
<T
, A
>
The listener function
Function
TinyEventDispatcher
value• dispatcher: TinyEventDispatcher
<T
, A
>
The TinyEventDispatcher
to remove the listener from
Effect
<TinyEventDispatcher
<T
, A
>, never
, never
>