8 lines
143 B
TypeScript
Raw Normal View History

import type { Footnotes } from './index.js';
2025-05-04 19:58:18 +03:00
declare module 'ckeditor5' {
interface PluginsMap {
[ Footnotes.pluginName ]: Footnotes;
}
}