UNPKG

ngx-editor

Version:

The Rich Text Editor for Angular, Built on ProseMirror

9 lines (8 loc) 294 B
import type { EditorState, Command } from 'prosemirror-state'; import { ToggleCommand } from './types'; declare class Blockqote implements ToggleCommand { toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default Blockqote;