chore(ckeditor5-admonition): fix references: DocumentFragment -> ViewDocumentFragment

This commit is contained in:
Elian Doran
2025-07-12 19:29:51 +03:00
parent be33f68c52
commit 395e9b2228
2 changed files with 5 additions and 5 deletions

View File

@@ -1,9 +1,9 @@
import type { Editor, ModelElement, DocumentSelection, PositioningFunction } from 'ckeditor5';
import type { Editor, ModelElement, ModelDocumentSelection, PositioningFunction } from 'ckeditor5';
import { BalloonPanelView, CKEditorError } from 'ckeditor5';
import type { KatexOptions, MathJax2, MathJax3 } from './typings-external.js';
export function getSelectedMathModelWidget(
selection: DocumentSelection
selection: ModelDocumentSelection
): null | ModelElement {
const selectedElement = selection.getSelectedElement();