/** * @module * Block editing — DOM-dependent half of emkoma. * * Importing this module registers the builtin editors as a side effect, which * is what `` needs to make blocks editable. Pure * rendering consumers (SSR, previews) must not import it: everything here * requires a DOM. */ export type { BlockEditor } from "./editor.type.js"; export { blockquoteEditor } from "./blockquote.editor.js"; export { codeBlockEditor } from "./code-block.editor.js"; export { headingEditor } from "./heading.editor.js"; export { htmlEditor } from "./html.editor.js"; export { imageEditor } from "./image.editor.js"; export { listEditor } from "./list.editor.js"; export { paragraphEditor } from "./paragraph.editor.js"; export { listEditors, registerEditor, resolveEditor, unregisterEditor, } from "./registry.js"; export { tableEditor } from "./table.editor.js"; export { taskListEditor } from "./task-list.editor.js"; export type { FormatRange, InlineModel } from "./inline-edit.js"; export { activeFormatsAt, adjustFormats, applyHighlights, applyTextEdit, clearHighlights, modelToMarkdown, parseInlineModel, rangeToOffsets, toggleFormat, walkTextNodes, } from "./inline-edit.js"; //# sourceMappingURL=mod.d.ts.map