Update module.ts

This commit is contained in:
syuilo 2019-01-15 10:10:41 +09:00 committed by GitHub
parent 3d467c2629
commit ab4fbb2e33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,12 +19,12 @@ export default abstract class Module {
} }
@autobind @autobind
public subscribeReply(key: string, isMessage: boolean, id: string, data?: any) { protected subscribeReply(key: string, isMessage: boolean, id: string, data?: any) {
this.ai.subscribeReply(this, key, isMessage, id, data); this.ai.subscribeReply(this, key, isMessage, id, data);
} }
@autobind @autobind
public unsubscribeReply(key: string) { protected unsubscribeReply(key: string) {
this.ai.unsubscribeReply(this, key); this.ai.unsubscribeReply(this, key);
} }
} }