(msg: SDKResultMessage)
| 295 | * Extract the result text from a successful SDKResultMessage |
| 296 | */ |
| 297 | export function getResultText(msg: SDKResultMessage): string | null { |
| 298 | if (msg.subtype === 'success') { |
| 299 | return msg.result |
| 300 | } |
| 301 | return null |
| 302 | } |
nothing calls this directly
no outgoing calls
no test coverage detected