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.
20 lines • 563 B
TypeScript
import { Node } from '@tiptap/pm/model';
import { default as React } from 'react';
interface ImageNodeAttrs {
src: string;
alt?: string;
title?: string;
width?: string;
height?: string;
align?: string;
}
interface ResizableImageViewProps {
node: Node & {
attrs: ImageNodeAttrs;
};
updateAttributes: (attrs: Partial<ImageNodeAttrs>) => void;
selected?: boolean;
}
declare const ResizableImageView: React.FC<ResizableImageViewProps>;
export default ResizableImageView;
//# sourceMappingURL=ResizableImageView.d.ts.map