Represents a ZeroMQ event type.
The event type (e.g., "bind", "connect", "close", etc.), which is stored in the type property.
type
The base event data type (which is unified by the type).
type AllEvents = EventFor<"bind", { address: string }>// is equivalent totype AllEvents = { type: "bind", address: string } Copy
type AllEvents = EventFor<"bind", { address: string }>// is equivalent totype AllEvents = { type: "bind", address: string }
Represents a ZeroMQ event type.