From 5c92c060209833eddf9a994e97b509b0b140da69 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 6 Oct 2018 17:51:53 +0200 Subject: [PATCH] fix(typings): fix compilation problem --- ts/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ts/index.ts b/ts/index.ts index f6af353..6beab94 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1 +1,9 @@ +// compatibility +declare global { + interface Element { } + interface Node { } + interface NodeListOf { } +} + +// normal export * from './smartpdf.classes.smartpdf';