| 4 | |
| 5 | // To ensure that all nodes have compatible signatures for these methods. |
| 6 | export interface VirtualNode { |
| 7 | toNode(): Node; |
| 8 | toMarkup(): string; |
| 9 | } |
| 10 | |
| 11 | function isMathDomNode(node: VirtualNode): node is MathDomNode { |
| 12 | return 'toText' in node; |
no outgoing calls
no test coverage detected
searching dependent graphs…