We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80ee5f7 commit 01b622eCopy full SHA for 01b622e
core/src/utils/helpers.ts
@@ -22,7 +22,7 @@ export const transitionEndAsync = (el: HTMLElement | null, expectedDuration = 0)
22
*/
23
const transitionEnd = (el: HTMLElement | null, expectedDuration = 0, callback: (ev?: TransitionEvent) => void) => {
24
let unRegTrans: (() => void) | undefined;
25
- let animationTimeout: number | undefined;
+ let animationTimeout: NodeJS.Timeout | undefined;
26
const opts: AddEventListenerOptions = { passive: true };
27
const ANIMATION_FALLBACK_TIMEOUT = 500;
28
0 commit comments