| 1 | export type CodeTreeNodeType = 'directory' | 'file'; |
| 2 | |
| 3 | export interface CodeTreeFileInput { |
| 4 | path: string; |
| 5 | content: string; |
| 6 | } |
| 7 | |
| 8 | export interface CodeTreeNode { |
| 9 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected