From 596a8af137b4129d2253003952f2840d7f7633a7 Mon Sep 17 00:00:00 2001 From: Joe Skeen Date: Mon, 28 Sep 2015 16:17:56 -0600 Subject: [PATCH] Fix implicit 'any' --- browser-sync/browser-sync.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser-sync/browser-sync.d.ts b/browser-sync/browser-sync.d.ts index 9f081f663..f189f4ac0 100644 --- a/browser-sync/browser-sync.d.ts +++ b/browser-sync/browser-sync.d.ts @@ -283,7 +283,7 @@ declare module "browser-sync" { target?: string; middleware?: MiddlewareHandler; ws: boolean; - reqHeaders: (config) => Hash; + reqHeaders: (config: any) => Hash; proxyRes: (res: http.ServerResponse, req: http.ServerRequest, next: Function) => any; }