UNPKG

@atlaskit/editor-plugin-base

Version:

Base plugin for @atlaskit/editor-core

7 lines 256 B
import { PluginKey } from '@atlaskit/editor-prosemirror/state'; export const scrollGutterPluginKey = new PluginKey('scrollGutter'); export const getScrollGutterPluginState = state => { if (state) { return scrollGutterPluginKey.getState(state); } };