8 lines
334 B
TypeScript
Raw Normal View History

2025-01-06 20:13:30 +02:00
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];
}