mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 03:29:02 +01: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;
 | |
| 	}
 | |
| }
 | 
