TS2507
Type 'typeof EventEmitter' is not a constructor function type.
Error happened when importing the exported class in another project.
Broken Code ❌
import EventEmitter from 'events';
export class WebSocketClient extends EventEmitter {
constructor() {
super();
}
}Fixed Code ✔️
import { EventEmitter } from 'events';
export class WebSocketClient extends EventEmitter {
constructor() {
super();
}
}