| 9 | } |
| 10 | |
| 11 | export interface IDoc { |
| 12 | type: string |
| 13 | content?: string |
| 14 | voidElement: boolean |
| 15 | name: string |
| 16 | attrs: {} |
| 17 | children: IDoc[] |
| 18 | } |
| 19 | |
| 20 | export interface IOptions { |
| 21 | components: string[] |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…