From c147310778aaf2fd74d81c91e7929c1c5a1ea74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armando=20Magalh=C3=A3es?= Date: Mon, 1 Apr 2019 03:05:10 +0200 Subject: [PATCH] fix: requestFragment option type --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 89d21b4..88d36a2 100644 --- a/index.d.ts +++ b/index.d.ts @@ -39,7 +39,7 @@ declare class Tailor extends EventEmitter { , maxAssetLinks?: number , pipeAttributes?: (attributes: Attributes) => object , pipeInstanceName?: string - , requestFragment?: (filterHeaders: (attributes: Attributes, req: IncomingMessage) => object, url: Url, attributes: Attributes, req: IncomingMessage, span?: Span) => Promise + , requestFragment?: (url: Url, attributes: Attributes, req: IncomingMessage, span?: Span) => Promise , templatesPath?: string , tracer?: Tracer })