(input: SlateEditor)
| 11 | jsxt; |
| 12 | |
| 13 | const createEditor = (input: SlateEditor) => |
| 14 | createSlateEditor({ |
| 15 | plugins: [BaseParagraphPlugin, BaseCodeBlockPlugin], |
| 16 | selection: input.selection, |
| 17 | value: input.children, |
| 18 | }); |
| 19 | |
| 20 | const createEditorWithLink = (input: SlateEditor) => |
| 21 | createSlateEditor({ |
no test coverage detected
searching dependent graphs…