mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 10:22:29 +08:00

git-subtree-dir: _regroup/ckeditor5-footnotes git-subtree-mainline: 80c390c72b5350a2bcbcda45952da86ade4564cc git-subtree-split: f5a6ff5684e612606d9e158e8f143bceb1cdbf8f
8 lines
334 B
TypeScript
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];
|
|
}
|