mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 21:36:05 +01:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
|
|
import type { KeyboardMarker } from './index.js';
|
||
|
|
|
||
|
|
declare module 'ckeditor5' {
|
||
|
|
interface PluginsMap {
|
||
|
|
[ KeyboardMarker.pluginName ]: KeyboardMarker;
|
||
|
|
}
|
||
|
|
}
|