mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 11:02:27 +08:00
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];
|
||
|
}
|