From 938122b49bc6c59bdc3553985965e635fbd516ed Mon Sep 17 00:00:00 2001 From: Eric Lu Date: Tue, 3 Feb 2015 10:07:56 -0800 Subject: [PATCH] Expose raw http server --- restify/restify.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/restify/restify.d.ts b/restify/restify.d.ts index 6e0ee450a..7128ca3d0 100644 --- a/restify/restify.d.ts +++ b/restify/restify.d.ts @@ -95,6 +95,7 @@ declare module "restify" { listen(... args: any[]): any; close(... args: any[]): any; pre(routeCallBack: RequestHandler): any; + server: http.Server; }