( msg: RenderableMessage, )
| 368 | } |
| 369 | |
| 370 | function isPreToolHookSummary( |
| 371 | msg: RenderableMessage, |
| 372 | ): msg is SystemStopHookSummaryMessage { |
| 373 | return ( |
| 374 | msg.type === 'system' && |
| 375 | msg.subtype === 'stop_hook_summary' && |
| 376 | msg.hookLabel === 'PreToolUse' |
| 377 | ) |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Check if a message should be skipped (not break the group, just passed through). |
no outgoing calls
no test coverage detected