0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00

docs(cli): add unit info for idleTimeout (#22335)

Signed-off-by: Jason Ford <fordjason@gmail.com>
This commit is contained in:
Jason Ford 2024-02-07 17:09:08 -08:00 committed by Divy Srivastava
parent 64e8b229f6
commit 5fd8d59555

View file

@ -5717,7 +5717,8 @@ declare namespace Deno {
* `pong` within the timeout specified, the connection is deemed
* unhealthy and is closed. The `close` and `error` event will be emitted.
*
* The default is 120 seconds. Set to `0` to disable timeouts. */
* The unit is seconds, with a default of 120.
* Set to `0` to disable timeouts. */
idleTimeout?: number;
}