| 41 | } |
| 42 | |
| 43 | interface RicosNode { |
| 44 | type?: string; |
| 45 | nodes?: RicosNode[]; |
| 46 | textData?: RicosTextData; |
| 47 | headingData?: { level?: number }; |
| 48 | [key: string]: unknown; |
| 49 | } |
| 50 | |
| 51 | interface RicosDocument { |
| 52 | nodes?: RicosNode[]; |
nothing calls this directly
no outgoing calls
no test coverage detected