(msg: SDKResultMessage)
| 288 | * Check if an SDKResultMessage indicates success |
| 289 | */ |
| 290 | export function isSuccessResult(msg: SDKResultMessage): boolean { |
| 291 | return msg.subtype === 'success' |
| 292 | } |
| 293 | |
| 294 | /** |
| 295 | * Extract the result text from a successful SDKResultMessage |
nothing calls this directly
no outgoing calls
no test coverage detected