@kubb/core 0.37.9 → 0.37.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import EventEmitter from 'events';
1
+ import EventEmitter from 'eventemitter3';
2
2
  import { DirectoryTreeOptions } from 'directory-tree';
3
3
 
4
4
  interface Cache<TCache = any> {
@@ -228,7 +228,7 @@ type Status = 'new' | 'success' | 'removed';
228
228
 
229
229
  declare class FileManager {
230
230
  private cache;
231
- emitter: EventEmitter;
231
+ emitter: EventEmitter<string | symbol, any>;
232
232
  events: {
233
233
  emitFile: (id: string, file: File) => void;
234
234
  emitStatusChange: (file: File) => void;