(type: MessageType, callback: (data: IResponse<any>) => void, key: string)
| 25 | } |
| 26 | |
| 27 | on(type: MessageType, callback: (data: IResponse<any>) => void, key: string) { |
| 28 | this.messageBridge.on(type, callback, key); |
| 29 | } |
| 30 | |
| 31 | removeListenEvent(widgetId: string, type: MessageType) { |
| 32 | this.messageBridge.removeListenEvent(type, widgetId); |
no outgoing calls
no test coverage detected