fix: update status signature

This commit is contained in:
Derrick Hammer 2023-07-28 23:48:07 -04:00
parent 1f3d59982a
commit 809e0ecd3b
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ export default abstract class NetworkClient extends Client {
return this.callModuleReturn("register");
}
public async status(callback?: any): Promise<void | (() => Promise<void>)> {
public status(callback?: any): Promise<void> | (() => void) {
return getNetworkModuleStatus(callback, undefined, this.connectModule);
}