mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 19:12:27 +08:00
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import FootnoteEditing from './footnote-editing/footnote-editing.js';
|
|
import FootnoteUI from './footnote-ui.js';
|
|
import type { Footnotes } from './index.js';
|
|
|
|
declare module 'ckeditor5' {
|
|
interface PluginsMap {
|
|
[ Footnotes.pluginName ]: Footnotes;
|
|
[ FootnoteEditing.pluginName ]: FootnoteEditing;
|
|
[ FootnoteUI.pluginName ]: FootnoteUI;
|
|
}
|
|
}
|