(data)
| 155 | // Send a message to this UIComponent's iframe's page. |
| 156 | // - data: an object with at least a `name` field. |
| 157 | async postMessage(data) { |
| 158 | (await this.iframePort).postMessage(data); |
| 159 | } |
| 160 | |
| 161 | // Show the UIComponent. |
| 162 | // - messageData: a message to send to the underlying iframe via `postMessage`. |
no outgoing calls
no test coverage detected