UNPKG

@zodiac-ui/editor

Version:

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

16 lines (15 loc) 301 B
import { NodeSpec } from 'prosemirror-model'; /** * @name text_node */ export interface TextDefinition { type: 'text'; /** * @minLength 1 */ text: string; marks?: Array<any>; } export declare const textNode: NodeSpec & { toDebugString?: () => string; };