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