These are the default properties required if you want to avoid providing any renderers
| 33 | |
| 34 | /** These are the default properties required if you want to avoid providing any renderers */ |
| 35 | interface SampleElement { |
| 36 | /** Text displayed on the child node */ |
| 37 | label: string |
| 38 | /** The complete path of the element (including all folders) */ |
| 39 | path: string |
| 40 | } |
| 41 | |
| 42 | type ElementType = 'document' | 'folder' |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected