Fix types

This commit is contained in:
Chi Vinh Le
2018-08-06 19:56:09 +02:00
parent a63da509a3
commit 820ee12485
+2 -2
View File
@@ -15,8 +15,8 @@ interface PopupProps {
export default class Popup extends Component<PopupProps> {
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);