UNPKG

@plait/angular-text

Version:

Text processing implementation, supports commonly used rich text formats, such as font size, color, bold, italics, etc.

8 lines (7 loc) 266 B
import { PlaitBoard } from '@plait/core'; import { Element } from 'slate'; import { AngularEditor, ViewType } from 'slate-angular'; export interface PlaitTextEditor extends AngularEditor { renderElement?: (element: Element) => ViewType; board: PlaitBoard; }