mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 13:39:01 +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;
 | 
						|
	}
 | 
						|
}
 |