doc: specify types of listener parameter

We cannot manage with `{any}` because `message` cannot be
of `Symbol` or `undefined` types.

PR-URL: https://github.com/nodejs/node/pull/20405
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Vse Mozhet Byt 2018-04-29 18:27:17 +03:00
parent 1c530e89ed
commit aaca38a261

View File

@ -84,7 +84,8 @@ process.on('exit', (code) => {
added: v0.5.10
-->
* `message` {Object} a parsed JSON object or primitive value.
* `message` { Object | boolean | number | string | null } a parsed JSON object
or a serializable primitive value.
* `sendHandle` {net.Server|net.Socket} a [`net.Server`][] or [`net.Socket`][]
object, or undefined.