Revert "*add destroy method"

This reverts commit 0483c27c94.
This commit is contained in:
Derrick Hammer 2023-04-08 22:55:28 -04:00
parent 0483c27c94
commit 10ad05f1da
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 4 deletions

View File

@ -255,10 +255,6 @@ class Message extends Client {
public send(data: any) {
this._send?.({ action: "send", args: [data] });
}
public destroy(error: Error) {
this._send?.({ action: "destroy", args: [error] });
}
}
const createChannel = factory<Channel>(Channel, MODULE);