UNPKG

react-latex-editor

Version:

A powerful React rich text editor with mathematical equation support, built on TipTap with MathLive integration

21 lines 634 B
interface SpecialFeaturesControlsProps { /** * The Tiptap editor instance */ editor: any; /** * Whether the editor is in read-only mode */ readOnly?: boolean; /** * Callback for opening the math dialog */ onMathDialogOpen: () => void; /** * Callback for image picker */ onImagePicker: () => void; } declare const SpecialFeaturesControls: ({ editor, readOnly, onMathDialogOpen, onImagePicker, }: SpecialFeaturesControlsProps) => import("react/jsx-runtime").JSX.Element; export default SpecialFeaturesControls; //# sourceMappingURL=SpecialFeaturesControls.d.ts.map