Minimal interface for walking a ProseMirror JSON tree.
| 76 | |
| 77 | /** Minimal interface for walking a ProseMirror JSON tree. */ |
| 78 | interface PmNode { |
| 79 | text?: string |
| 80 | content?: PmNode[] |
| 81 | [key: string]: unknown |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * ProseMirror JSON node type used when mention nodes (with `attrs`) may be present. |
nothing calls this directly
no outgoing calls
no test coverage detected