UNPKG

@atlaskit/editor-plugin-breakout

Version:

Breakout plugin for @atlaskit/editor-core

6 lines (5 loc) 359 B
import type { EditorState } from '@atlaskit/editor-prosemirror/state'; import { PluginKey } from '@atlaskit/editor-prosemirror/state'; import type { BreakoutPluginState } from '../breakoutPluginType'; export declare const pluginKey: PluginKey<BreakoutPluginState>; export declare const getPluginState: (state: EditorState) => BreakoutPluginState | undefined;