1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-24 09:49:26 -05:00
This commit is contained in:
syuilo 2023-10-30 17:36:32 +09:00
parent b4dd61a016
commit d45b2dd3a7

View file

@ -67,6 +67,8 @@ export default abstract class Channel {
}
public abstract init(params: any): void;
public dispose?(): void;
public onMessage?(type: string, body: any): void;
}