zwave-js-ui
Version:
Z-Wave Control Panel and MQTT Gateway
8 lines (7 loc) • 317 B
JavaScript
import EventEmitter from 'node:events';
import { applyMixin } from "./utils.js";
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export class TypedEventEmitter {
}
// Make TypedEventEmitter inherit from EventEmitter without actually extending
applyMixin(TypedEventEmitter, EventEmitter);