mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 13:39:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			310 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			310 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export interface KeyboardShortcut {
 | 
						|
    separator?: string;
 | 
						|
    actionName?: string;
 | 
						|
    description?: string;
 | 
						|
    defaultShortcuts?: string[];
 | 
						|
    effectiveShortcuts?: string[];
 | 
						|
    scope?: string;
 | 
						|
}
 | 
						|
 | 
						|
export interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {
 | 
						|
    actionName: string;
 | 
						|
} |