Skip to content

Commit 94585c3

Browse files
authored
Don't import/export from the same file twice (#5562)
Quiets down an annoying build warning in some configurations
1 parent 9c7492d commit 94585c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/utils/flush.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import './boot.js';
1111
/* eslint-disable no-unused-vars */
1212
import { Debouncer } from '../utils/debounce.js'; // used in type annotations
1313
/* eslint-enable no-unused-vars */
14-
import { flushDebouncers } from '../utils/debounce.js'; // used in type annotations
15-
export { enqueueDebouncer } from '../utils/debounce.js'; // used in type annotations
14+
import {enqueueDebouncer, flushDebouncers} from '../utils/debounce.js';
15+
export {enqueueDebouncer};
1616

1717
/**
1818
* Forces several classes of asynchronously queued tasks to flush:

0 commit comments

Comments
 (0)