@@ -19,13 +19,13 @@ export declare const version: string
1919 * Unavailable capabilities will be absent or set to `false`.
2020 *
2121 * Possible keys include:
22- * * `ipc` – Support for the `ipc://` protocol.
23- * * `pgm` – Support for the `pgm://` protocol.
24- * * `tipc` – Support for the `tipc://` protocol.
25- * * `norm` – Support for the `norm://` protocol.
26- * * `curve` – Support for the CURVE security mechanism.
27- * * `gssapi` – Support for the GSSAPI security mechanism.
28- * * `draft` – Wether the library is built with support for DRAFT sockets.
22+ * * `ipc` - Support for the `ipc://` protocol.
23+ * * `pgm` - Support for the `pgm://` protocol.
24+ * * `tipc` - Support for the `tipc://` protocol.
25+ * * `norm` - Support for the `norm://` protocol.
26+ * * `curve` - Support for the CURVE security mechanism.
27+ * * `gssapi` - Support for the GSSAPI security mechanism.
28+ * * `draft` - Wether the library is built with support for DRAFT sockets.
2929 */
3030export declare const capability : Partial < {
3131 ipc : boolean
@@ -65,7 +65,7 @@ export declare function curveKeyPair(): {
6565 * A ØMQ context. Contexts manage the background I/O to send and receive
6666 * messages of their associated sockets.
6767 *
68- * It is usually not necessary to instantiate a new context – the global
68+ * It is usually not necessary to instantiate a new context - the global
6969 * {@link context} is used for new sockets by default. The global context is the
7070 * only context that is shared between threads (when using
7171 * [worker_threads](https://nodejs.org/api/worker_threads.html)). Custom
@@ -176,76 +176,76 @@ type EventFor<T extends string, D = {}> = Expand<{type: T} & D>
176176 * errors) that correspond to a specific operation are namespaced with a colon
177177 * `:`, e.g. `bind:error` or `connect:retry`.
178178 *
179- * * **accept** – ZMQ_EVENT_ACCEPTED The socket has accepted a connection from a
179+ * * **accept** - ZMQ_EVENT_ACCEPTED The socket has accepted a connection from a
180180 * remote peer.
181181 *
182- * * **accept:error** – ZMQ_EVENT_ACCEPT_FAILED The socket has rejected a
182+ * * **accept:error** - ZMQ_EVENT_ACCEPT_FAILED The socket has rejected a
183183 * connection from a remote peer.
184184 *
185185 * The following additional details will be included with this event:
186186 *
187- * * `error` – An error object that describes the specific error
187+ * * `error` - An error object that describes the specific error
188188 * that occurred.
189189 *
190- * * **bind** – ZMQ_EVENT_LISTENING The socket was successfully bound to a
190+ * * **bind** - ZMQ_EVENT_LISTENING The socket was successfully bound to a
191191 * network interface.
192192 *
193- * * **bind:error** – ZMQ_EVENT_BIND_FAILED The socket could not bind to a given
193+ * * **bind:error** - ZMQ_EVENT_BIND_FAILED The socket could not bind to a given
194194 * interface.
195195 *
196196 * The following additional details will be included with this event:
197197 *
198- * * `error` – An error object that describes the specific error
198+ * * `error` - An error object that describes the specific error
199199 * that occurred.
200200 *
201- * * **connect** – ZMQ_EVENT_CONNECTED The socket has successfully connected to
201+ * * **connect** - ZMQ_EVENT_CONNECTED The socket has successfully connected to
202202 * a remote peer.
203203 *
204- * * **connect:delay** – ZMQ_EVENT_CONNECT_DELAYED A connect request on the
204+ * * **connect:delay** - ZMQ_EVENT_CONNECT_DELAYED A connect request on the
205205 * socket is pending.
206206 *
207- * * **connect:retry** – ZMQ_EVENT_CONNECT_RETRIED A connection attempt is being
207+ * * **connect:retry** - ZMQ_EVENT_CONNECT_RETRIED A connection attempt is being
208208 * handled by reconnect timer. Note that the reconnect interval is
209209 * recalculated at each retry.
210210 *
211211 * The following additional details will be included with this event:
212212 *
213- * * `interval` – The current reconnect interval.
213+ * * `interval` - The current reconnect interval.
214214 *
215- * * **close** – ZMQ_EVENT_CLOSED The socket was closed.
215+ * * **close** - ZMQ_EVENT_CLOSED The socket was closed.
216216 *
217- * * **close:error** – ZMQ_EVENT_CLOSE_FAILED The socket close failed. Note that
217+ * * **close:error** - ZMQ_EVENT_CLOSE_FAILED The socket close failed. Note that
218218 * this event occurs **only on IPC** transports..
219219 *
220220 * The following additional details will be included with this event:
221221 *
222- * * `error` – An error object that describes the specific error
222+ * * `error` - An error object that describes the specific error
223223 * that occurred.
224224 *
225- * * **disconnect** – ZMQ_EVENT_DISCONNECTED The socket was disconnected
225+ * * **disconnect** - ZMQ_EVENT_DISCONNECTED The socket was disconnected
226226 * unexpectedly.
227227 *
228- * * **handshake** – ZMQ_EVENT_HANDSHAKE_SUCCEEDED The ZMTP security mechanism
228+ * * **handshake** - ZMQ_EVENT_HANDSHAKE_SUCCEEDED The ZMTP security mechanism
229229 * handshake succeeded. NOTE: This event may still be in DRAFT statea and not
230230 * yet available in stable releases.
231231 *
232- * * **handshake:error:protocol** – ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL The ZMTP
232+ * * **handshake:error:protocol** - ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL The ZMTP
233233 * security mechanism handshake failed due to some mechanism protocol error,
234234 * either between the ZMTP mechanism peers, or between the mechanism server
235235 * and the ZAP handler. This indicates a configuration or implementation error
236236 * in either peer resp. the ZAP handler. NOTE: This event may still be in
237237 * DRAFT state and not yet available in stable releases.
238238 *
239- * * **handshake:error:auth** – ZMQ_EVENT_HANDSHAKE_FAILED_AUTH The ZMTP
239+ * * **handshake:error:auth** - ZMQ_EVENT_HANDSHAKE_FAILED_AUTH The ZMTP
240240 * security mechanism handshake failed due to an authentication failure. NOTE:
241241 * This event may still be in DRAFT state and not yet available in stable
242242 * releases.
243243 *
244- * * **handshake:error:other** – ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL
244+ * * **handshake:error:other** - ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL
245245 * Unspecified error during handshake. NOTE: This event may still be in DRAFT
246246 * state and not yet available in stable releases.
247247 *
248- * * **end** – ZMQ_EVENT_MONITOR_STOPPED Monitoring on this socket ended.
248+ * * **end** - ZMQ_EVENT_MONITOR_STOPPED Monitoring on this socket ended.
249249 *
250250 * * **unknown** An event was generated by ZeroMQ that the Node.js library could
251251 * not interpret. Please submit a pull request for new event types if they are
0 commit comments