(items: DetailTreeTextBlock['items'])
| 308 | } |
| 309 | |
| 310 | function createDetailTree(items: DetailTreeTextBlock['items']): DetailTreeTextBlock { |
| 311 | return { type: 'detail-tree', items }; |
| 312 | } |
| 313 | |
| 314 | function createPathDetailItem(label: string, path: string): DetailTreePathItem { |
| 315 | return { label, path }; |
no outgoing calls
no test coverage detected