Skip to content

Commit 01b622e

Browse files
Fix build
1 parent 80ee5f7 commit 01b622e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/utils/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const transitionEndAsync = (el: HTMLElement | null, expectedDuration = 0)
2222
*/
2323
const transitionEnd = (el: HTMLElement | null, expectedDuration = 0, callback: (ev?: TransitionEvent) => void) => {
2424
let unRegTrans: (() => void) | undefined;
25-
let animationTimeout: number | undefined;
25+
let animationTimeout: NodeJS.Timeout | undefined;
2626
const opts: AddEventListenerOptions = { passive: true };
2727
const ANIMATION_FALLBACK_TIMEOUT = 500;
2828

0 commit comments

Comments
 (0)