chore(ckeditor5-footnotes): fix references: RootElement -> ModelRootElement

This commit is contained in:
Elian Doran
2025-07-12 19:17:47 +03:00
parent d4ce12dca9
commit 6ead31b45f
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
import { Command, type Element, type RootElement, type Writer } from "ckeditor5";
import { Command, type Element, type ModelRootElement, type Writer } from "ckeditor5";
import { ATTRIBUTES, ELEMENTS } from './constants.js';
import { modelQueryElement } from './utils.js';
@@ -82,7 +82,7 @@ export default class InsertFootnoteCommand extends Command {
/**
* Returns the footnote section if it exists, or creates on if it doesn't.
*/
private _getFootnoteSection( writer: Writer, rootElement: RootElement ): Element {
private _getFootnoteSection( writer: Writer, rootElement: ModelRootElement ): Element {
const footnoteSection = modelQueryElement( this.editor, rootElement, element =>
element.is( 'element', ELEMENTS.footnoteSection )
);