UNPKG

ngx-editor

Version:

The Rich Text Editor for Angular, Built on ProseMirror

8 lines (7 loc) 261 B
import type { EditorState, Command } from 'prosemirror-state'; import { InsertCommand } from './types'; declare class HorizontalRule implements InsertCommand { insert(): Command; canExecute(state: EditorState): boolean; } export default HorizontalRule;