Fix implicit 'any'

This commit is contained in:
Joe Skeen
2015-09-28 16:17:56 -06:00
parent 7aa3a226d7
commit 596a8af137
+1 -1
View File
@@ -283,7 +283,7 @@ declare module "browser-sync" {
target?: string;
middleware?: MiddlewareHandler;
ws: boolean;
reqHeaders: (config) => Hash<any>;
reqHeaders: (config: any) => Hash<any>;
proxyRes: (res: http.ServerResponse, req: http.ServerRequest, next: Function) => any;
}