@xyo-network/module-event-emitter 5.2.18 → 5.2.20
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { BaseParams } from '@xylabs/
|
|
2
|
-
import { BaseEmitter
|
|
1
|
+
import type { BaseParams, EventData } from '@xylabs/sdk-js';
|
|
2
|
+
import { BaseEmitter } from '@xylabs/sdk-js';
|
|
3
3
|
export declare class ModuleBaseEmitter<TParams extends BaseParams = BaseParams, TEventData extends EventData = EventData> extends BaseEmitter<TParams, TEventData> {
|
|
4
4
|
}
|
|
5
5
|
//# sourceMappingURL=ModuleBaseEmitter.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleBaseEmitter.d.ts","sourceRoot":"","sources":["../../src/ModuleBaseEmitter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ModuleBaseEmitter.d.ts","sourceRoot":"","sources":["../../src/ModuleBaseEmitter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C,qBAAa,iBAAiB,CAAC,OAAO,SAAS,UAAU,GAAG,UAAU,EAAE,UAAU,SAAS,SAAS,GAAG,SAAS,CAC9G,SAAQ,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC;CAAG"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/ModuleBaseEmitter.ts"],"sourcesContent":["import type { BaseParams } from '@xylabs/
|
|
1
|
+
{"version":3,"sources":["../../src/ModuleBaseEmitter.ts"],"sourcesContent":["import type { BaseParams, EventData } from '@xylabs/sdk-js'\nimport { BaseEmitter } from '@xylabs/sdk-js'\n\nexport class ModuleBaseEmitter<TParams extends BaseParams = BaseParams, TEventData extends EventData = EventData>\n extends BaseEmitter<TParams, TEventData> {}\n"],"mappings":";AACA,SAAS,mBAAmB;AAErB,IAAM,oBAAN,cACG,YAAiC;AAAC;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/module-event-emitter",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.20",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -36,15 +36,14 @@
|
|
|
36
36
|
"!**/*.test.*"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@xylabs/
|
|
40
|
-
"@xylabs/events": "~5.0.50"
|
|
39
|
+
"@xylabs/sdk-js": "~5.0.61"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
|
-
"@xylabs/ts-scripts-yarn3": "~7.2.
|
|
44
|
-
"@xylabs/tsconfig": "~7.2.
|
|
42
|
+
"@xylabs/ts-scripts-yarn3": "~7.2.32",
|
|
43
|
+
"@xylabs/tsconfig": "~7.2.32",
|
|
45
44
|
"typescript": "~5.9.3"
|
|
46
45
|
},
|
|
47
46
|
"publishConfig": {
|
|
48
47
|
"access": "public"
|
|
49
48
|
}
|
|
50
|
-
}
|
|
49
|
+
}
|
package/src/ModuleBaseEmitter.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { BaseParams } from '@xylabs/
|
|
2
|
-
import { BaseEmitter
|
|
1
|
+
import type { BaseParams, EventData } from '@xylabs/sdk-js'
|
|
2
|
+
import { BaseEmitter } from '@xylabs/sdk-js'
|
|
3
3
|
|
|
4
4
|
export class ModuleBaseEmitter<TParams extends BaseParams = BaseParams, TEventData extends EventData = EventData>
|
|
5
5
|
extends BaseEmitter<TParams, TEventData> {}
|