| 67 | } |
| 68 | |
| 69 | export interface Node< |
| 70 | TTag extends Maybe<string> = Maybe<string>, |
| 71 | TAttrs extends Maybe<NodeAttributes> = Maybe<NodeAttributes> |
| 72 | > extends NodeAPI, RawNode<TTag, TAttrs> { |
| 73 | content?: Array<string | Node>; |
| 74 | options?: Options; |
| 75 | } |
| 76 | |
| 77 | export interface Options { |
| 78 | sync?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…