12 lines
348 B
TypeScript
Raw Normal View History

import FootnoteEditing from './footnote-editing/footnote-editing.js';
import FootnoteUI from './footnote-ui.js';
import type { Footnotes } from './index.js';
2025-05-04 19:58:18 +03:00
declare module 'ckeditor5' {
interface PluginsMap {
[ Footnotes.pluginName ]: Footnotes;
[ FootnoteEditing.pluginName ]: FootnoteEditing;
[ FootnoteUI.pluginName ]: FootnoteUI;
}
}