From 78426148acc0f8d821eb29625fb181fc6680ae6e Mon Sep 17 00:00:00 2001 From: dmx Date: Sun, 3 Nov 2024 10:00:38 +0400 Subject: [PATCH] fix TS error 'Timeout' is not assignable to type 'number' --- src/LGraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LGraph.ts b/src/LGraph.ts index 96bd95079..2f3140a2d 100644 --- a/src/LGraph.ts +++ b/src/LGraph.ts @@ -73,7 +73,7 @@ export class LGraph { last_update_time: number starttime: number catch_errors: boolean - execution_timer_id: number | null + execution_timer_id: number | ReturnType | null errors_in_execution: boolean execution_time: number _last_trigger_time?: number