From df6284e4de2aa465b6e3437a4ac363d76382da52 Mon Sep 17 00:00:00 2001 From: Sean Krail Date: Mon, 17 Apr 2017 11:27:04 -0400 Subject: [PATCH] Update index.d.ts - missing IServerOptions.backlog (#15562) --- types/ws/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/ws/index.d.ts b/types/ws/index.d.ts index d5382ba43c..35f9b16f2b 100644 --- a/types/ws/index.d.ts +++ b/types/ws/index.d.ts @@ -112,6 +112,7 @@ declare namespace WebSocket { host?: string; port?: number; server?: http.Server | https.Server; + backlog?: number; verifyClient?: VerifyClientCallbackAsync | VerifyClientCallbackSync; handleProtocols?: any; path?: string;