Skip to content

Commit 9e550c9

Browse files
committed
fix: correctly declare global
1 parent 62d6dd6 commit 9e550c9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Data.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ process.nextTick = setImmediate;
2020
/**
2121
* @private
2222
*/
23-
afterInteractions = runAfterInteractions;
23+
const afterInteractions = runAfterInteractions;
24+
global.afterInteractions = afterInteractions;
2425

2526
/**
2627
* @private

0 commit comments

Comments
 (0)