mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 03:29:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			216 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			216 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { Kbd, KbdEditing, KbdUI } from './index.js';
 | |
| 
 | |
| declare module 'ckeditor5' {
 | |
| 	interface PluginsMap {
 | |
| 		[ Kbd.pluginName ]: Kbd;
 | |
| 		[ KbdUI.pluginName ]: KbdUI;
 | |
| 		[ KbdEditing.pluginName ]: KbdEditing;
 | |
| 	}
 | |
| }
 | 
