(entry: SessionPathEntry)
| 14 | } |
| 15 | |
| 16 | function isDisplayableEntry(entry: SessionPathEntry) { |
| 17 | return ( |
| 18 | entry.type === 'message' || entry.type === 'custom_message' || entry.type === 'branch_summary' |
| 19 | ) |
| 20 | } |
| 21 | |
| 22 | function countDisplayableEntriesInRange( |
| 23 | entries: SessionPathEntry[], |
no outgoing calls
no test coverage detected