UNPKG

@zodiac-ui/editor

Version:

A rich text editor for Angular based on `@atlaskit/editor-core`.

8 lines (7 loc) 451 B
import { EditorPlugin } from "../../lib/interfaces/editor-plugin"; import { Plugin, PluginKey } from "prosemirror-state"; import { Dispatch } from "../../lib/interfaces/editor-config"; export declare const TEXT_FORMATTING = "textFormatting"; export declare const pluginKey: PluginKey<any, any>; export declare const textFormattingPMPlugin: (dispatch: Dispatch<any>) => Plugin<any, any>; export declare const textFormattingPlugin: EditorPlugin;