From 1632606f82cfbaf89d4b96b8dccacfaf2a6ae2f3 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Fri, 3 Jul 2015 13:12:35 +1000 Subject: [PATCH] Update htmltojsx.d.ts --- htmltojsx/htmltojsx.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htmltojsx/htmltojsx.d.ts b/htmltojsx/htmltojsx.d.ts index 06040a67c2..5f32304b8a 100644 --- a/htmltojsx/htmltojsx.d.ts +++ b/htmltojsx/htmltojsx.d.ts @@ -8,6 +8,8 @@ declare module 'htmltojsx' { constructor(options?: { createClass?: boolean; outputClassName?: string; + /** as a string e.g. ' ' or '\t' */ + indent?: string; }); convert(html: string): string; }