UNPKG

@atlaskit/editor-plugin-mentions

Version:

Mentions plugin for @atlaskit/editor-core

12 lines (11 loc) 455 B
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin'; import { PluginKey } from '@atlaskit/editor-prosemirror/state'; export declare const mentionPlaceholderPluginKey: PluginKey; export declare const MENTION_PLACEHOLDER_ACTIONS: { SHOW_PLACEHOLDER: string; HIDE_PLACEHOLDER: string; }; export type MentionPlaceholderPluginState = { placeholder?: string; }; export declare function createMentionPlaceholderPlugin(): SafePlugin<{}>;