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.

11 lines (10 loc) 338 B
import { LexicalEditor } from 'lexical'; import { type FC } from 'react'; import { MathBlockNode, MathInlineNode } from '../../node'; export interface MathInlineProps { className?: string; editor: LexicalEditor; node: MathInlineNode | MathBlockNode; } declare const MathInline: FC<MathInlineProps>; export default MathInline;