( message: Message, options?: WindowPostMessageOptions, )
| 7 | parent.postMessage(message, options); |
| 8 | |
| 9 | export const postUIMessage = ( |
| 10 | message: Message, |
| 11 | options?: WindowPostMessageOptions, |
| 12 | ) => postMessage({ pluginMessage: message }, options); |
| 13 | |
| 14 | export const postUISettingsChangingMessage = <T>( |
| 15 | key: string, |
no test coverage detected