chore(ckeditor5-keyboard-marker): port source code

This commit is contained in:
Elian Doran
2025-05-04 14:38:37 +03:00
parent 2a700da824
commit 11c437e67c
9 changed files with 30 additions and 79 deletions

View File

@@ -1,7 +1,9 @@
import type { KeyboardMarker } from './index.js';
import type { Kbd, KbdEditing, KbdUI } from './index.js';
declare module 'ckeditor5' {
interface PluginsMap {
[ KeyboardMarker.pluginName ]: KeyboardMarker;
[ Kbd.pluginName ]: Kbd;
[ KbdUI.pluginName ]: KbdUI;
[ KbdEditing.pluginName ]: KbdEditing;
}
}