UNPKG

react-latex-editor

Version:

A professional React rich text editor with mathematical equation support, built on TipTap with MathLive integration. Production-ready with TypeScript support, accessibility features, and industrial-grade error handling.

12 lines 391 B
import { Mark } from '@tiptap/core'; declare module "@tiptap/core" { interface Commands<ReturnType> { backgroundColor: { setBackgroundColor: (color: string) => ReturnType; unsetBackgroundColor: () => ReturnType; }; } } declare const BackgroundColor: Mark<any, any>; export default BackgroundColor; //# sourceMappingURL=BackgroundColor.d.ts.map