chore(ckeditor5-footnotes): fix more errors

This commit is contained in:
Elian Doran
2025-05-04 21:06:57 +03:00
parent face58c7e2
commit c0a64d1ef0
4 changed files with 15 additions and 2 deletions

View File

@@ -1,7 +1,11 @@
import FootnoteEditing from './footnote-editing/footnote-editing.js';
import FootnoteUI from './footnote-ui.js';
import type { Footnotes } from './index.js';
declare module 'ckeditor5' {
interface PluginsMap {
[ Footnotes.pluginName ]: Footnotes;
[ FootnoteEditing.pluginName ]: FootnoteEditing;
[ FootnoteUI.pluginName ]: FootnoteUI;
}
}