(entry: TreeRenderEntry)
| 3463 | } |
| 3464 | |
| 3465 | function treeRenderEntryPath(entry: TreeRenderEntry): string | null { |
| 3466 | if (entry.type === "note") return entry.note.path; |
| 3467 | if (entry.type === "asset") return entry.asset.path; |
| 3468 | return null; |
| 3469 | } |
| 3470 | |
| 3471 | // --------------------------------------------------------------------------- |
| 3472 | // Virtualized leaf-list rendering |
no outgoing calls
no test coverage detected