From 1e3569b0df144dff1cfacbf649e9c861ef9e7936 Mon Sep 17 00:00:00 2001 From: Urs Wegmann Date: Thu, 11 Jun 2015 09:20:35 +0200 Subject: [PATCH] Fixed Options.tagNameProcessors for xml2js --- xml2js/xml2js.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml2js/xml2js.d.ts b/xml2js/xml2js.d.ts index 33ad64978b..0dc03add70 100644 --- a/xml2js/xml2js.d.ts +++ b/xml2js/xml2js.d.ts @@ -64,7 +64,7 @@ declare module 'xml2js' { normalize?: boolean; normalizeTags?: boolean; strict?: boolean; - tagNameProcessors?: (name: string) => string; + tagNameProcessors?: [(name: string) => string]; trim?: boolean; validator?: Function; xmlns?: boolean;