mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 02:02:29 +08: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;
|
|
}
|
|
}
|