*Have client extend event emitter

This commit is contained in:
Derrick Hammer 2023-02-01 07:42:16 -05:00
parent 952630c546
commit 376a2d330c
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
3 changed files with 9 additions and 1 deletions

View File

@ -8,6 +8,7 @@
},
"dependencies": {
"@siaweb/libweb": "git+https://git.lumeweb.com/LumeWeb/libsiaweb.git",
"eventemitter2": "^6.4.9",
"libkernel": "^0.1.48",
"libkmodule": "^0.2.53"
},

View File

@ -2,6 +2,7 @@ lockfileVersion: 5.4
specifiers:
'@siaweb/libweb': git+https://git.lumeweb.com/LumeWeb/libsiaweb.git
eventemitter2: ^6.4.9
libkernel: ^0.1.48
libkmodule: ^0.2.53
prettier: ^2.8.3
@ -9,6 +10,7 @@ specifiers:
dependencies:
'@siaweb/libweb': git.lumeweb.com/LumeWeb/libsiaweb/5e6cdba3e7d9a4b94e21ddcd5f2b5138fb440ee8
eventemitter2: 6.4.9
libkernel: 0.1.48
libkmodule: 0.2.53
@ -22,6 +24,10 @@ packages:
resolution: {integrity: sha512-wFqPLVuGyfuEU1PsE7AMC+ANcoJiz7iruJPUrNZC0riDv1qMrZw+tx44HlBXLJ1H50JZiGtRPr9zLgkPFhf9OA==}
dev: false
/eventemitter2/6.4.9:
resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==}
dev: false
/libkernel/0.1.48:
resolution: {integrity: sha512-h86j/D+5gnpw/h8DTQE1C9hWFRmQnw5ZU9L3fYTZIPqPEIIU40z+tnDp66Zbb6mcfYCr8+SGkhcCy3XsyHOvyQ==}
dependencies:

View File

@ -4,6 +4,7 @@ type logErr = typeof import("libkmodule").logErr;
type log = typeof import("libkmodule").log;
import type { ErrTuple, DataFn } from "@siaweb/libweb";
import { EventEmitter2 as EventEmitter } from "eventemitter2";
type callModuleBound = (method: string, data?: any) => Promise<ErrTuple>;
type connectModuleBound = (
@ -29,7 +30,7 @@ export interface ModuleBagBound extends ModuleBag {
connectModule: connectModuleBound;
}
export abstract class Client {
export abstract class Client extends EventEmitter {
private _callModule?: callModuleBound;
get callModule(): callModuleBound {