react-latex-editor
Version:
A powerful React rich text editor with mathematical equation support, built on TipTap with MathLive integration
19 lines • 554 B
TypeScript
import { default as React } from 'react';
import { ReactNodeViewProps } from '@tiptap/react';
import { Node } from '@tiptap/pm/model';
interface ImageNodeAttrs {
src: string;
alt?: string;
title?: string;
width?: string;
height?: string;
align?: string;
}
interface ResizableImageViewProps extends ReactNodeViewProps {
node: Node & {
attrs: ImageNodeAttrs;
};
}
declare const ResizableImageView: React.FC<ResizableImageViewProps>;
export default ResizableImageView;
//# sourceMappingURL=ResizableImageView.d.ts.map