( adapter: PlatformAdapter, )
| 253 | |
| 254 | /** Type guard to check if an adapter supports proactive message sending */ |
| 255 | export function isMessageSender( |
| 256 | adapter: PlatformAdapter, |
| 257 | ): adapter is PlatformAdapter & MessageSender { |
| 258 | return typeof (adapter as any).sendMessage === "function"; |
| 259 | } |
no outgoing calls
no test coverage detected