8 lines
158 B
TypeScript
Raw Normal View History

import type { KeyboardMarker } from './index.js';
declare module 'ckeditor5' {
interface PluginsMap {
[ KeyboardMarker.pluginName ]: KeyboardMarker;
}
}