From ae06cfe3dfc0535aeeeb7e60dc468f66d4381624 Mon Sep 17 00:00:00 2001 From: Fabio Rossetto Date: Wed, 30 May 2018 15:53:41 -0300 Subject: [PATCH] allow JSON in printable --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 8d78ca1..43f7bf5 100644 --- a/index.d.ts +++ b/index.d.ts @@ -3,7 +3,7 @@ import 'print-js/dist/print'; declare type PrintTypes = 'pdf' | 'html' | 'image' | 'json'; export interface Configuration { - printable: string | string[]; + printable: any; fallbackPrintable?: string; type?: string; documentTitle?: string;