| 58 | } |
| 59 | |
| 60 | export interface RawNode< |
| 61 | TTag extends Maybe<string> = Maybe<string>, |
| 62 | TAttrs extends Maybe<NodeAttributes> = Maybe<NodeAttributes> |
| 63 | > { |
| 64 | tag: TTag; |
| 65 | attrs: TAttrs; |
| 66 | content?: Array<string | RawNode>; |
| 67 | } |
| 68 | |
| 69 | export interface Node< |
| 70 | TTag extends Maybe<string> = Maybe<string>, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…