From 177b68fd9d139959c47a86bc97126f28a485621e Mon Sep 17 00:00:00 2001 From: ghiscoding Date: Mon, 24 May 2021 21:18:45 -0400 Subject: [PATCH] fix: don't use nodejs type to avoid build issue --- src/app/modules/angular-slickgrid/editors/longTextEditor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/modules/angular-slickgrid/editors/longTextEditor.ts b/src/app/modules/angular-slickgrid/editors/longTextEditor.ts index f3225fca9..cc11dd8e7 100644 --- a/src/app/modules/angular-slickgrid/editors/longTextEditor.ts +++ b/src/app/modules/angular-slickgrid/editors/longTextEditor.ts @@ -30,7 +30,7 @@ export class LongTextEditor implements Editor { protected _bindEventService: BindingEventService; protected _defaultTextValue: any; protected _locales: Locale; - protected _timer?: NodeJS.Timeout; + protected _timer?: any; protected _currentLengthElm!: HTMLSpanElement; protected _textareaElm!: HTMLTextAreaElement; protected _wrapperElm!: HTMLDivElement;