From 820ee124858ab3f4d73387ead09993e994688472 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 6 Aug 2018 19:56:09 +0200 Subject: [PATCH] Fix types --- src/core/client/ui/components/Popup/Popup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/client/ui/components/Popup/Popup.ts b/src/core/client/ui/components/Popup/Popup.ts index 6dd385104..a39c985f9 100644 --- a/src/core/client/ui/components/Popup/Popup.ts +++ b/src/core/client/ui/components/Popup/Popup.ts @@ -15,8 +15,8 @@ interface PopupProps { export default class Popup extends Component { private ref: Window | null = null; - private detectCloseInterval: NodeJS.Timer | null = null; - private resetCallbackInterval: NodeJS.Timer | null = null; + private detectCloseInterval: any = null; + private resetCallbackInterval: any = null; constructor(props: PopupProps) { super(props);