1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import { Command, Plugin } from 'prosemirror-state';
- import { EditorView } from 'prosemirror-view';
- declare function keymap(bindings: {
- [key: string]: Command;
- }): Plugin;
- declare function keydownHandler(bindings: {
- [key: string]: Command;
- }): (view: EditorView, event: KeyboardEvent) => boolean;
- export { keydownHandler, keymap };
|