UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

7 lines (6 loc) 176 B
import { IElementNode } from './i-element-node'; export interface IParagraphNode extends IElementNode { textFormat: number; textStyle: string; type: 'paragraph'; }