From d858e8e4a6c19ecdffe27fdbab85f9cea8540106 Mon Sep 17 00:00:00 2001 From: Flarna Date: Wed, 3 Jan 2018 20:23:20 +0100 Subject: [PATCH] [restify] Fix build by removing wrong headers property from Response (#22653) --- types/restify/index.d.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/types/restify/index.d.ts b/types/restify/index.d.ts index 3711ee6f2c..b5f6dd6fe5 100644 --- a/types/restify/index.d.ts +++ b/types/restify/index.d.ts @@ -731,9 +731,6 @@ export interface Response extends http.ServerResponse { /** short hand for the header content-type. */ contentType: string; - /** response headers. */ - headers: any; - /** A unique request id (x-request-id). */ id: string; }