UNPKG

@atlaskit/editor-plugin-save-on-enter

Version:

Save-on-enter plugin for @atlaskit/editor-core

7 lines (6 loc) 310 B
import type { NextEditorPlugin } from '@atlaskit/editor-common/types'; import type { EditorView } from '@atlaskit/editor-prosemirror/view'; export type Config = (editorView: EditorView) => void; export type SaveOnEnterPlugin = NextEditorPlugin<'saveOnEnter', { pluginConfiguration: Config | undefined; }>;