@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 +2 -2
- package/dist/index.global.js +168433 -0
- package/dist/index.global.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +544 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import EventEmitter from '
|
|
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;
|