From 46b8f06955283edaff9f05443d1463e8a717718b Mon Sep 17 00:00:00 2001 From: riggraz Date: Fri, 6 Sep 2019 15:04:05 +0200 Subject: [PATCH] Fix typescript type for setTimeout variable --- app/javascript/components/Board/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/components/Board/index.tsx b/app/javascript/components/Board/index.tsx index e8ae8880..4dc6a439 100644 --- a/app/javascript/components/Board/index.tsx +++ b/app/javascript/components/Board/index.tsx @@ -38,7 +38,7 @@ interface State { } class Board extends React.Component { - searchFilterTimeoutId: number; + searchFilterTimeoutId: ReturnType; constructor(props) { super(props);