UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

7 lines (6 loc) 272 B
import { EditorView } from '../prosemirror'; /** * Sends a key to ProseMirror content area, simulating user key press. * Accepts key descriptions similar to Keymap, i.e. 'Shift-Ctrl-L' */ export default function sendKeyToPm(editorView: EditorView, keys: string): void;