1 import { CodeHighlightNode, CodeNode } from '@lexical/code'
2 import { HashtagNode } from '@lexical/hashtag'
3 import { AutoLinkNode, LinkNode } from '@lexical/link'
4 import { ListItemNode, ListNode } from '@lexical/list'
5 import { OverflowNode } from '@lexical/overflow'
6 import { HorizontalRuleNode } from '@lexical/react/LexicalHorizontalRuleNode'
7 import { HeadingNode, QuoteNode } from '@lexical/rich-text'
8 import { TableCellNode, TableNode, TableRowNode } from '@lexical/table'
9 import { ImageNode } from './Plugins/Image/ImageNode'
10 import { CommentThreadMarkNode } from './Plugins/Comments/CommentThreadMarkNode'
11 import { CustomListNode } from './Plugins/CustomList/CustomListNode'
12 import { ProtonNode } from './Plugins/Suggestions/ProtonNode'
18 CommentThreadMarkNode,
29 with: (node: ListNode) => {
30 return new CustomListNode(node.__listType, node.__start)
41 export const AllNodes = CommonNodes