Elian Doran 9643bf310e Add '_regroup/ckeditor5-footnotes/' from commit 'f5a6ff5684e612606d9e158e8f143bceb1cdbf8f'
git-subtree-dir: _regroup/ckeditor5-footnotes
git-subtree-mainline: 80c390c72b5350a2bcbcda45952da86ade4564cc
git-subtree-split: f5a6ff5684e612606d9e158e8f143bceb1cdbf8f
2025-05-04 19:59:07 +03:00

8 lines
334 B
TypeScript

import { Plugin } from 'ckeditor5/src/core.js';
import FootnoteEditing from './footnote-editing/footnote-editing.js';
import FootnoteUI from './footnote-ui.js';
export default class Footnotes extends Plugin {
static get pluginName(): "Footnotes";
static get requires(): readonly [typeof FootnoteEditing, typeof FootnoteUI];
}