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 93a0c49 commit 727ad96Copy full SHA for 727ad96
src/plugins/IEventPlugin.ts
@@ -1,5 +1,4 @@
1
import { EventPluginContext } from './EventPluginContext';
2
-import { IEventPlugin } from './IEventPlugin';
3
4
export interface IEventPlugin {
5
priority?: number;
src/services/DefaultModuleCollector.ts
@@ -10,7 +10,7 @@ export class DefaultModuleCollector implements IModuleCollector {
10
}
11
12
const modules: IModule[] = [];
13
- const scripts: NodeListOf<HTMLScriptElement> = document.getElementsByTagName('script');
+ const scripts: HTMLCollectionOf<HTMLScriptElement> = document.getElementsByTagName('script');
14
if (scripts && scripts.length > 0) {
15
for (let index = 0; index < scripts.length; index++) {
16
if (scripts[index].src) {
0 commit comments